比赛 20110725 评测结果 AWWWWWWWWWWWWWWWWWWW
题目名称 存在与否 最终得分 5
用户昵称 ybh 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-07-25 11:37:04
显示代码纯文本
program exists;
var
  n:longint;
begin
  assign(input,'exists.in');
  reset(input);
  assign(output,'exists.out');
  rewrite(output);
  readln(n);
  writeln(4);
  close(input);
  close(output);
end.