QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#623178#5731. CheckerboardKelivan1WA 16ms10528kbPython3105b2024-10-09 10:29:392024-10-09 10:29:40

Judging History

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

  • [2024-10-09 10:29:40]
  • 评测
  • 测评结果:WA
  • 用时:16ms
  • 内存:10528kb
  • [2024-10-09 10:29:39]
  • 提交

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'