记录编号 | 21984 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 长路上的灯 | 最终得分 | 100 | ||
用户昵称 | belong.zmx | 是否通过 | 通过 | ||
代码语言 | Pascal | 运行时间 | 0.153 s | ||
提交时间 | 2010-11-16 14:30:07 | 内存使用 | 0.11 MiB | ||
program lifht1(input,output); var a:double; t:longint; n,i,ans,j:longint; begin assign(input,'light.in'); reset(input); assign(output,'light.out'); rewrite(output); ans:=0; readln(n); for i:=1 to n do begin readln(a,t); for j:=1 to t do ans:=ans xor trunc(a*j); end; writeln(ans); close(input); close(output); end.