QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623178 | #5731. Checkerboard | Kelivan1 | WA | 16ms | 10528kb | Python3 | 105b | 2024-10-09 10:29:39 | 2024-10-09 10:29:40 |
Judging History
answer
import sys
def insep():
return(list(map(int,input().split())))
RCAB = insep()
print(RCAB[0])
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 16ms
memory: 10528kb
input:
6 5 3 2 1 2 3 3 2
output:
6
result:
wrong answer 1st lines differ - expected: 'BBBWW', found: '6'