记录编号 33657 评测结果 WWAWWWWAAAW
题目名称 解析程序 最终得分 36
用户昵称 Gravatarecho 是否通过 未通过
代码语言 Pascal 运行时间 0.015 s
提交时间 2011-11-11 16:35:35 内存使用 0.12 MiB
显示代码纯文本
program parser;
begin
  assign(input,'parser.in');
  assign(output,'parser.out');
  reset(input);
  rewrite(output);
  writeln('Wrong Format');
  close(input);
  close(output);
end.