| 记录编号 | 68292 | 评测结果 | AAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 437.删掉的边 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.002 s | ||
| 提交时间 | 2013-08-19 11:13:24 | 内存使用 | 0.31 MiB | ||
#include<fstream>
using namespace std;
int main()
{
ifstream fin("edges.in");
ofstream fout("edges.out");
int n,m;
fin>>n>>m;
fout<<m-n+1;
fin.close();
fout.close();
return 0;
}