QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#726524 | #6418. Ah, It's Yesterday Once More | maspy | AC ✓ | 9ms | 10472kb | Python3 | 513b | 2024-11-09 02:07:16 | 2024-11-09 02:07:16 |
Judging History
answer
txt="""11110111110111110110
10011001011001011011
11101101101101101101
00110110110110110111
10011011011011011001
11101101101101101101
10110110110110110110
11011011011011011011
01101101101101101101
10110110110110110111
10011011011011011001
11101101101101101101
10110110110110110110
11011011011011011011
01101101101101101101
10110110110110110111
10011011011011011000
11101101101101101111
10110100110100110001
11011111011111011111"""
print(20,20)
for row in txt.split():
print(row.strip())
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 9ms
memory: 10472kb
input:
output:
20 20 11110111110111110110 10011001011001011011 11101101101101101101 00110110110110110111 10011011011011011001 11101101101101101101 10110110110110110110 11011011011011011011 01101101101101101101 10110110110110110111 10011011011011011001 11101101101101101101 10110110110110110110 11011011011011011011 ...
result:
ok 152 successful hack.