QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#726516#6418. Ah, It's Yesterday Once MoremaspyWA 8ms10460kbPython3513b2024-11-09 02:00:542024-11-09 02:00:55

Judging History

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

  • [2024-11-09 02:00:55]
  • 评测
  • 测评结果:WA
  • 用时:8ms
  • 内存:10460kb
  • [2024-11-09 02:00:54]
  • 提交

answer

txt="""01011111011111011111
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11111011111011111011"""

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: 0
Wrong Answer
time: 8ms
memory: 10460kb

input:



output:

20 20
01011111011111011111
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
01011101011101011101
11101011101011101011
...

result:

wrong answer Cycle Detected.