记录编号 21962 评测结果 AAAAAAAAAA
题目名称 长路上的灯 最终得分 100
用户昵称 Gravatar王者自由 是否通过 通过
代码语言 Pascal 运行时间 0.185 s
提交时间 2010-11-16 12:30:26 内存使用 19.19 MiB
显示代码纯文本
program light;
var i,j,n,t,k,max,min:longint;
  a:extended;
  L:array[0..20000001] of boolean;
begin
  assign(input,'light.in'); reset(input);
  assign(output,'light.out'); rewrite(output);
  readln(n);
  max:=0; min:=maxlongint;
  for i:=1 to n do
  begin
    readln(a,t);
    for j:=1 to t do
    begin
      k:=trunc(a*j);
      L[k]:=not L[k];
      if k>max then max:=k;
      if k<min then min:=k;
    end;
  end;
  for i:=min to max do
    if L[i] then
      begin writeln(i); break; end;
  close(input); close(output);
end.