比赛 20110318 评测结果 AWWWWWWWWE
题目名称 工程规划 最终得分 10
用户昵称 绝对零度 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-03-18 21:28:22
显示代码纯文本
program aaa;
begin
 assign(input,'work.in');
 reset(input);
 assign(output,'work.out');
 rewrite(output);
 writeln('NO SOLUTION');
 close(input);
 close(output);
end.