| 比赛 | 20121009 | 评测结果 | AWWWWWAWW |
|---|---|---|---|
| 题目名称 | 最长路 | 最终得分 | 22 |
| 用户昵称 | 11111111 | 运行时间 | 0.003 s |
| 代码语言 | C++ | 内存使用 | 3.15 MiB |
| 提交时间 | 2012-10-09 21:23:05 | ||
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream fin("longest.in");
ofstream fout("longest.out");
fout<<"-1";
fin.close();
fout.close();
return 0;
}