QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#772951#1795. Beer Can GameI_be_wannaWA 0ms3800kbC++17158b2024-11-22 23:08:392024-11-22 23:08:40

Judging History

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

  • [2024-11-22 23:08:40]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3800kb
  • [2024-11-22 23:08:39]
  • 提交

answer

#include<iostream>
using namespace std;
int main(){
	string n;
	int l;
	cin>>n;
	if(n=="aa\nnn"){
		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: 0ms
memory: 3800kb

input:

aa
nn

output:

0

result:

wrong answer 1st lines differ - expected: '4', found: '0'