QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#623139#5731. CheckerboardKelivan1WA 16ms10548kbPython392b2024-10-09 10:20:532024-10-09 10:20:58

Judging History

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

  • [2024-10-09 10:20:58]
  • 评测
  • 测评结果:WA
  • 用时:16ms
  • 内存:10548kb
  • [2024-10-09 10:20:53]
  • 提交

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>'