比赛 HAOI2009 模拟试题1 评测结果 WWWWWWWWWWWWWWWAWWWW
题目名称 劣质编码 最终得分 5
用户昵称 ybh 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-03-25 21:52:15
显示代码纯文本
program codez;
var
  n:integer;
begin
  assign(input,'codez.in');
  reset(input);
  assign(output,'codez.out');
  rewrite(output);
  readln(n);
  writeln(-1);
  close(input);
  close(output);
end.