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