QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#602687 | #7779. Swiss Stage | xxcdsgyes# | WA | 0ms | 3640kb | C++20 | 429b | 2024-10-01 12:05:13 | 2024-10-01 12:05:14 |
Judging History
answer
// xxc
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define IOS ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
#define ll long long
#define debug(x) cout << #x << ' ' << x << endl;
const int inf = 1e9 + 10;
const ll INF = 1e18 + 10;
void test(){
int x,y;cin >> x >> y;
cout << 5 - x + y << '\n';
}
int main(){
IOS
int t = 1;//cin >> t;
while(t--){
test();
}
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3640kb
input:
0 1
output:
6
result:
wrong answer 1st numbers differ - expected: '4', found: '6'