QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
详细
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'