QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#640504 | #6254. Breaking Branches | BaBamBa# | WA | 0ms | 3684kb | C++17 | 280b | 2024-10-14 13:47:56 | 2024-10-14 13:47:56 |
Judging History
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"