QOJ.ac
QOJ
The 2nd Universal Cup Finals is coming! Check out our event page, schedule, and competition rules!
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#546763 | #7779. Swiss Stage | skc# | WA | 0ms | 3636kb | C++14 | 307b | 2024-09-04 13:09:41 | 2024-09-04 13:09:41 |
Judging History
answer
# include <bits/stdc++.h>
int main() {
using namespace std;
int ans[2][2];
ans[0][0] = 4, ans[0][1] = 4, ans[0][2] = 6;
ans[1][0] = 3, ans[1][1] = 3, ans[1][2] = 4;
ans[2][0] = 2, ans[2][1] = 2, ans[2][2] = 2;
int x, y;
cin >> x >> y;
cout << ans[x][y] << endl;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3524kb
input:
0 1
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3636kb
input:
1 2
output:
0
result:
wrong answer 1st numbers differ - expected: '4', found: '0'