QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#373248#4649. ApplesLVJBot1WA 1ms3584kbC++14206b2024-04-01 12:42:092024-04-01 12:42:10

Judging History

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

  • [2024-04-01 12:42:10]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3584kb
  • [2024-04-01 12:42:09]
  • 提交

answer

/* Submission UUID: 6f76f955-0913-474d-9f00-6e0e105b8a21. */
#include<iostream>
using namespace std;int main(){int x;cin>>x;cout<<"Today, I ate"<<" "<<x<<" "<<"apple";if(x>1){cout<<"s";}cout<<".";return 0;}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3584kb

input:

100
4
4 1 4
5 1 4
1 9 1
9 8 1
0
2
1 2 1
2 1 2
3
1 3
1 2
2 1
5
9 19 8
37 9 4
19 30 6
0 37 1
30 0 0
10
4 1
4 1
3 4
2 6
5 10
4 4
2 10
5 9
1 0
3 6
5
7 49 6
9 7 1
49 9 0
24 24 6
4 4 2
10
1 8
4 10
1 3
5 0
2 5
3 3
2 4
1 6
2 3
5 4
5
1 1 3
3 47 2
47 41 9
37 3 3
41 37 10
10
3 4
1 9
4 10
1 7
4 1
4 3
3 5
2 8
4 ...

output:

Today, I ate 100 apples.

result:

wrong answer 1st lines differ - expected: '23', found: 'Today, I ate 100 apples.'