比赛 | 20121108 | 评测结果 | WWTTTTTTTW |
---|---|---|---|
题目名称 | 造房子的学问 | 最终得分 | 0 |
用户昵称 | duwei | 运行时间 | 7.000 s |
代码语言 | Pascal | 内存使用 | 0.17 MiB |
提交时间 | 2012-11-08 11:28:17 | ||
program wood; var a:array[1..3] of integer; n,m,k,i:integer; begin assign(input,'wood.in');assign(output,'wood.out'); reset(input);rewrite(output); readln(n,m); for i:=1 to n do readln(a[i]); readln(k); writeln('No solution'); close(input);close(output); end.