记录编号 | 395425 | 评测结果 | AAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 删掉的边 | 最终得分 | 100 | ||
用户昵称 | pα.Princesavs | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.003 s | ||
提交时间 | 2017-04-15 22:06:07 | 内存使用 | 0.31 MiB | ||
#include<cstdio> #include<iostream> using namespace std; int main() { freopen("edges.in","r",stdin); freopen("edges.out","w",stdout); int N,M,a; cin>>N>>M; a=M-N+1; cout<<a; return 0; }