比赛 | 20111104 | 评测结果 | EEEEEEEEEE |
---|---|---|---|
题目名称 | 方程 | 最终得分 | 0 |
用户昵称 | Launcher | 运行时间 | 0.000 s |
代码语言 | Pascal | 内存使用 | 0.00 MiB |
提交时间 | 2011-11-04 20:50:18 | ||
program equation; var a:array[1..1000]of integer; i,j,k,m,n,max,x:longint; begin assign(input,'equation.in');reset(input);assign(output,'equation.out');rewrite(output); readln(k,x); writeln(x mod 1000); close(input);close(output); end.