比赛 20090923练习赛 评测结果 AAAAA
题目名称 硬币翻转 最终得分 100
用户昵称 reamb 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-09-23 21:34:40
显示代码纯文本
program fanzhuanyingbi;
var
  n,i,j:integer;
  a:array[1..100]of integer;
begin
  assign (input,'coinn.in');
  reset (input);
  assign (output,'coinn.out');
  rewrite (output);
  read (n);
    writeln (n);
    for i:=1 to n do
      a[i]:=0;
    for i:=1 to n do
    begin
      for j:=1  to n do
        if i<>j then
          if a[j]=0  then
            a[j]:=1
          else
            a[j]:=0;
      for j:=1 to n do
        write (a[j]);
      writeln
    end;
  close (input);
  close (output)
end.