比赛 | 20121108 | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 造房子的学问 | 最终得分 | 0 |
用户昵称 | 舍得 | 运行时间 | 0.001 s |
代码语言 | Pascal | 内存使用 | 0.17 MiB |
提交时间 | 2012-11-08 11:17:02 | ||
var n,m,l1,l2,l3:longint; procedure init; begin assign(input,'wood.in'); assign(output,'wood.out'); reset(input); rewrite(output); end; procedure main; begin writeln('No solution.'); end; procedure print; begin close(input); close(output); end; begin init; main; print; end.