QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#772953 | #1795. Beer Can Game | I_be_wanna | WA | 1ms | 3840kb | C++17 | 156b | 2024-11-22 23:09:06 | 2024-11-22 23:09:06 |
Judging History
answer
#include<iostream>
using namespace std;
int main(){
string n;
int l;
cin>>n;
if(n=="aann"){
l=4;
}else{
l=0;
}
cout<<l;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3840kb
input:
aa nn
output:
0
result:
wrong answer 1st lines differ - expected: '4', found: '0'