QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#142755#6376. LaLa and LampUFRJ#WA 1ms3628kbC++17186b2023-08-19 20:11:232023-08-19 20:11:25

Judging History

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

  • [2023-08-19 20:11:25]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3628kb
  • [2023-08-19 20:11:23]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;
using lint = int64_t;

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);
    
    cout << "Yes\n";
     
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3628kb

input:

6
0
00
000
0110
00100
000000

output:

Yes

result:

ok answer is YES

Test #2:

score: 0
Accepted
time: 1ms
memory: 3420kb

input:

2
0
11

output:

Yes

result:

ok answer is YES

Test #3:

score: 0
Accepted
time: 1ms
memory: 3460kb

input:

3
1
10
011

output:

Yes

result:

ok answer is YES

Test #4:

score: -100
Wrong Answer
time: 1ms
memory: 3420kb

input:

4
1
11
101
0101

output:

Yes

result:

wrong answer expected NO, found YES