比赛 20101116 评测结果 AAAAAAAAAA
题目名称 长路上的灯 最终得分 100
用户昵称 gragon 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-16 10:10:43
显示代码纯文本
program ex;
var
f:array[1..2000000] of boolean;
b:array[1..5000] of double;
c:array[1..5000] of longint;
i,j,t,n:longint;

procedure init;
begin
  assign(input,'light.in');
  assign(output,'light.out');
  reset(input);
  rewrite(output);
  readln(n);
  for i:=1 to n do
  begin
    read(b[i]);
    readln(c[i]);
  end;
  close(input);
  for i:=1 to 2000000 do f[i]:=false;
end;

begin
  init;
  for i:=1 to n do
  begin
    for j:=1 to c[i] do
    begin
      t:=trunc(b[i]*j);
      if f[t] then f[t]:=false else f[t]:=true;
    end;
  end;
  for i:=1 to 2000000 do
  begin
    if f[i] then
    begin
      writeln(i);
      close(output);
      halt;
    end;
  end;
  close(output);
end.