QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623145 | #5731. Checkerboard | Kelivan1 | RE | 0ms | 0kb | Python3 | 131b | 2024-10-09 10:22:23 | 2024-10-09 10:22:33 |
answer
import sys
def insep():
return(map(int,input().split()))
RCAB = insep()
for i in range(0, len(RCAB)):
print(RCAB[i])
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Dangerous Syscalls
input:
6 5 3 2 1 2 3 3 2