QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#373099#7779. Swiss Stageacidlemon#WA 0ms3520kbC++17523b2024-04-01 02:23:572024-04-01 02:23:57

Judging History

你现在查看的是最新测评结果

  • [2024-04-01 02:23:57]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3520kb
  • [2024-04-01 02:23:57]
  • 提交

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}];
        if (x == 0 && y == 1) {
            y = 2;
            continue;
        }
        ++x;
    } while (x <= 2);
    cout << ans << endl;
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3520kb

input:

0 1

output:

7

result:

wrong answer 1st numbers differ - expected: '4', found: '7'