QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#640504#6254. Breaking BranchesBaBamBa#WA 0ms3684kbC++17280b2024-10-14 13:47:562024-10-14 13:47:56

Judging History

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

  • [2024-10-14 13:47:56]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3684kb
  • [2024-10-14 13:47:56]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    ll N;
    cin >> N;

    if(N%2==0)
        cout << "Bob";
    else
        cout << "Alice\n1";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4444

output:

Bob

result:

wrong answer Token "Bob" doesn't correspond to pattern "Alice"