結果

問題 No.1764 Square
ユーザー kohei2019kohei2019
提出日時 2023-06-22 21:57:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 54,852 KB
最終ジャッジ日時 2024-06-30 04:07:39
合計ジャッジ時間 887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,440 KB
testcase_01 AC 38 ms
54,852 KB
testcase_02 AC 38 ms
53,940 KB
testcase_03 AC 39 ms
53,420 KB
testcase_04 AC 39 ms
54,172 KB
testcase_05 AC 37 ms
54,304 KB
testcase_06 AC 38 ms
54,304 KB
testcase_07 AC 37 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
K = int(input())
lsq = [collections.deque(['A','E']),collections.deque(['B']),collections.deque(['C']),collections.deque(['D'])]

for i in range(K):
    lsq[(i+1)%4].append(lsq[i%4].popleft())

for i in range(4):
    print(*lsq[i],sep='')
0