QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#139597#2058. GeneratorAs3b_team_f_masr#WA 1ms3416kbC++14383b2023-08-14 00:53:122023-08-14 00:53:15

Judging History

你现在查看的是最新测评结果

  • [2023-08-14 00:53:15]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3416kb
  • [2023-08-14 00:53:12]
  • 提交

answer

#include <bits/stdc++.h>

#define F first
#define S second
#define ld long double
#define EPS 1e-9
using namespace std;

typedef long long ll;
const int N = 10000;
pair<int,int> p[N];
int main ()
{
	//ios::sync_with_stdio(false);
	//cin.tie(0);
	//cout.tie(0);
	//freopen("wigz.in","r",stdin);
	int a,b,c;
	cin >> a >> b >> c;
	cout << 1 + b - c;
	return(0);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3416kb

input:

6
2
3
4
5
6
10

output:

0

result:

wrong answer 1st lines differ - expected: '0/1', found: '0'