結果

問題 No.1764 Square
ユーザー H20H20
提出日時 2021-11-26 22:26:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 54,748 KB
最終ジャッジ日時 2024-06-29 18:09:29
合計ジャッジ時間 957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,356 KB
testcase_01 AC 40 ms
54,004 KB
testcase_02 AC 41 ms
53,808 KB
testcase_03 AC 41 ms
54,748 KB
testcase_04 AC 39 ms
53,664 KB
testcase_05 AC 40 ms
54,612 KB
testcase_06 AC 40 ms
53,224 KB
testcase_07 AC 41 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
Q = [collections.deque() for _ in range(4)]
Q[0].append('A')
Q[0].append('E')
Q[1].append('B')
Q[2].append('C')
Q[3].append('D')
K = int(input())
for i in range(1,K+1):
    temp = Q[(i-1)%4].popleft()
    Q[i%4].append(temp)
for q in Q:
    print(''.join(map(str, q)))
0