记录编号 21989 评测结果 AAAAAAAAAA
题目名称 长路上的灯 最终得分 100
用户昵称 Gravatarreamb 是否通过 通过
代码语言 Pascal 运行时间 0.170 s
提交时间 2010-11-16 14:41:19 内存使用 0.11 MiB
显示代码纯文本
var
m:int64;
i,a1,t,j,k,n:longint;
a:real;

begin
assign(input,'light.in'); reset(input);
assign(output,'light.out'); rewrite(output);
 readln(n);
 m:=0;
 for i:=1 to n do
  begin
   readln(a,t);
   for j:=1 to t do
   begin
    a1:=trunc(j*a);
    m:=m xor a1;
   end;
  end;
 writeln(m);
close(input); close(output);
end.