QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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)
詳細信息
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>'