比赛 | 20110311 | 评测结果 | AAAAAAAA |
---|---|---|---|
题目名称 | 删掉的边 | 最终得分 | 100 |
用户昵称 | wo shi 刘畅 | 运行时间 | 0.000 s |
代码语言 | Pascal | 内存使用 | 0.00 MiB |
提交时间 | 2011-03-11 19:16:51 | ||
var n,m,i,x,y:longint; begin assign(input,'edges.in'); reset(input); assign(output,'edges.out'); rewrite(output); readln(n,m); for i:=1 to m do readln(x,y); writeln(m-n+1); close(input); close(output); end.