結果

問題 No.1764 Square
ユーザー 👑 rin204rin204
提出日時 2021-12-12 23:00:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-07-21 11:30:25
合計ジャッジ時間 1,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 47 ms
53,504 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


queue = [deque() for _ in range(4)]
queue[0].append("A")
queue[1].append("B")
queue[2].append("C")
queue[3].append("D")
queue[0].append("E")
k = int(input())
for i in range(k):
    queue[(i + 1) % 4].append(queue[i % 4].pop())
for i in range(4):
    print(*queue[i], sep="")
0