比赛 NOIP_1 评测结果 C
题目名称 画海岛地图 最终得分 0
用户昵称 EnAsn 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-07-20 10:45:29
显示代码纯文本
program ex;
type
 ss=array[1..10,1..10]of integer;
var
 hang,lie:ss;
 n:integer;
procedure init;
 var
  i,j,xineger;
 begin
  assign(input,'island.in');
  assign(output,'island.out');
  reset(input);
  rewrite(output);
  readln(n);
  for i:=1 to n do
   begin
    read(x);
    j:=0;
    while x<>0 do
     begin
      inc(j);
      hang[i,j]:=x;
      read(x);
     end;
    readln;
   end;
  for i:=1 to n do
   begin
    read(x);
    j:=0;
    while x<>0 do
     begin
      inc(j);
      lie[i,j]:=x;
      read(x);
     end;
    readln;
   end;
  close(input);
 end;
begin
 init;
 wirteln('no');
 close(output);
end.