比赛 20101116 评测结果 RRRRRRRRRR
题目名称 长路上的灯 最终得分 0
用户昵称 itachi 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-16 08:33:44
显示代码纯文本
 program t1(input,output);
 var
 n:integer;
 a:double;
 t,k:int64;   max,i,j:longint;
 data:array[1..2000000]of byte;
 begin
 assign(input,'light.in');
 assign(output,'lighht.out');
 reset(input);
 rewrite(output);
 readln(n);  max:=0;
 fillchar(data,sizeof(data),0);
 for i:= 1 to n do
  begin
  readln(a,t);
   for j:= 1 to t do
    begin
    k:=trunc(a*j);
    data[k]:= (data[k]+1) mod 2 ;
    if k > max then max:=k;
    end;
  end;
  close(input);
 for i:= 1 to max do
 if data[i]=1 then
  begin
  writeln(i);
  close(output);
  exit; end;
  end.