QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#546763#7779. Swiss Stageskc#WA 0ms3636kbC++14307b2024-09-04 13:09:412024-09-04 13:09:41

Judging History

This is the latest submission verdict.

  • [2024-09-04 13:09:41]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3636kb
  • [2024-09-04 13:09:41]
  • Submitted

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'