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