比赛 20091112练习 评测结果 WWWWWW
题目名称 阿里巴巴 最终得分 0
用户昵称 chengyang 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-12 11:43:22
显示代码纯文本
program ail;
var
  i,j,k,x1,x2,z1,z2,c1,c2,n:longint;
begin
  assign(input,'ali.in');
  assign(output,'ali.out');
  reset(input);
  rewrite(output);
  readln(n);
  for i:=1 to n do begin
    readln(x1,z1,c1);
    readln(x2,z2,c2);
    readln(j);
    for k:=1 to j do readln;
    if (x1>x2)and(z1>z2)and(c1>c2)then writeln(0)else writeln('NIE');
  end;
  close(input); close(output);
end.