QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#139597 | #2058. Generator | As3b_team_f_masr# | WA | 1ms | 3416kb | C++14 | 383b | 2023-08-14 00:53:12 | 2023-08-14 00:53:15 |
Judging History
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'