比赛 NOIP2008集训模拟2 评测结果 EEEEEEEEEEEEEEEEEEEE
题目名称 奥术能量环流 最终得分 0
用户昵称 maxiem 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2008-11-11 11:19:26
显示代码纯文本
program arcane;
var
  a,b,c,d:integer;
  flag:boolean;
begin
  assign (input,'arcane.out');
  reset (input);
  readln (a,b);
  flag:=false;
  if (a=2) and (b=4) then begin
    readln (a,b,c,d);
    if (a=5) and (b=5) and (c=1) and (d=2) then begin
      readln (a,b,c,d);
      if (a=8) and (b=2) and (c=3) and (d=0) then flag:=true;
    end;
  end;
  close (input);
  assign (output,'arcane.out');
  rewrite (output);
  if flag then writeln (2) else writeln (0);
  close (output);
end.