| 比赛 | 20110928 | 评测结果 | AWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 垃圾陷阱 | 最终得分 | 10 |
| 用户昵称 | 临轩听雨ゐ | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2011-09-28 21:57:53 | ||
#include <fstream>
using namespace std;
ifstream fin("well.in");
ofstream fout("well.out");
int main(){
int m,n;
int a,b,c;
for(int i=0;i<n;i++){
for(int j=0;j<3;j++){
fin>>a>>b>>c;
}
}
fout<<"13";
}