记录编号 56033 评测结果 AAAAAAAA
题目名称 删掉的边 最终得分 100
用户昵称 Gravatardigital-T 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2013-03-25 11:43:41 内存使用 3.15 MiB
显示代码纯文本
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
	ifstream fin("edges.in");
	ofstream fout("edges.out");
    int l[101][101]={0},t[101]={0};
    int n,m,a,b,c,maxx,summ;
    fin>>m>>n;
    fout<<n-m+1;
    fin.close();
    fout.close();
    return 0;
    }