QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#523904#9101. Zayin and Buslangminjie#WA 0ms3536kbC++14165b2024-08-18 22:43:242024-08-18 22:43:24

Judging History

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

  • [2024-08-18 22:43:24]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3536kb
  • [2024-08-18 22:43:24]
  • 提交

answer

#include <iostream>
#include <cstdio>
using namespace std;

int main(){
        int a,b;
       cin>>a>>b;
      if(a+b<100) cout<<a+b<<endl;

	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

14
1
1
1
2
1
3
2
1
1 1
2
1
1 2
2
1
2 1
2
1
1 3
2
1
3 1
2
1
1 4
2
1
4 1
3
1 1
1 1 1
3
1 2
1 1 1
3
1 1
1 3 2
3
1 2
1 3 2

output:

15

result:

wrong answer 1st lines differ - expected: '2', found: '15'