QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#373098 | #7779. Swiss Stage | acidlemon# | WA | 1ms | 3820kb | C++17 | 436b | 2024-04-01 02:22:58 | 2024-04-01 02:22:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
map<pair<int, int>, int> mp;
mp[{1, 0}] = 1;
mp[{0, 1}] = 1;
mp[{1, 1}] = 1;
mp[{2, 0}] = 2;
mp[{0, 2}] = 2;
mp[{2, 1}] = 2;
mp[{1, 2}] = 2;
mp[{2, 2}] = 2;
int ans = 0;
do {
ans += mp[{x, y}];
++x;
} while (x <= 2);
cout << ans << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3820kb
input:
0 1
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 1ms
memory: 3592kb
input:
1 2
output:
4
result:
ok 1 number(s): "4"
Test #3:
score: -100
Wrong Answer
time: 1ms
memory: 3544kb
input:
0 0
output:
3
result:
wrong answer 1st numbers differ - expected: '4', found: '3'