結果

問題 No.1764 Square
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-26 22:23:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 55,444 KB
最終ジャッジ日時 2024-06-29 18:06:41
合計ジャッジ時間 842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,676 KB
testcase_01 AC 38 ms
53,440 KB
testcase_02 AC 39 ms
55,444 KB
testcase_03 AC 38 ms
54,544 KB
testcase_04 AC 36 ms
54,724 KB
testcase_05 AC 36 ms
53,932 KB
testcase_06 AC 36 ms
53,152 KB
testcase_07 AC 36 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
K = int(input())
A = [deque(['A', 'E']), deque(['B']), deque(['C']), deque(['D'])]
for i in range(K):
    a = A[i % 4].popleft()
    A[(i+1) % 4].append(a)

for a in A:
    print(''.join(a))
0