QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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);
}
詳細信息
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'