QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#602689 | #7779. Swiss Stage | xxcdsgyes# | WA | 0ms | 3696kb | C++20 | 429b | 2024-10-01 12:05:52 | 2024-10-01 12:05:53 |
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 << 3 - x + y << '\n';
}
int main(){
IOS
int t = 1;//cin >> t;
while(t--){
test();
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3696kb
input:
0 1
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
1 2
output:
4
result:
ok 1 number(s): "4"
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 3624kb
input:
0 0
output:
3
result:
wrong answer 1st numbers differ - expected: '4', found: '3'