| 记录编号 | 33657 | 评测结果 | WWAWWWWAAAW | ||
|---|---|---|---|---|---|
| 题目名称 | 556.解析程序 | 最终得分 | 36 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | 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.