记录编号 |
425623 |
评测结果 |
AAAAAAAA |
题目名称 |
删掉的边 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.001 s |
提交时间 |
2017-07-15 16:01:36 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<cctype>
using namespace std;
inline int get();
int n,m;
int main()
{
freopen("edges.in","r",stdin);
freopen("edges.out","w",stdout);
n=get();m=get();
printf("%d",m-n+1);
return 0;
}
inline int get()
{
int t=0,jud=1;char c=getchar();
while(!isdigit(c))
{
if(c=='-')jud=-1;
c=getchar();
}
while(isdigit(c))
{
t=(t<<3)+(t<<1)+c-'0';
c=getchar();
}
return t*jud;
}