結果

問題 No.1764 Square
ユーザー mkawa2mkawa2
提出日時 2021-11-26 22:24:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 1,225 ms
コンパイル使用メモリ 10,912 KB
実行使用メモリ 8,556 KB
最終ジャッジ日時 2023-09-12 05:06:14
合計ジャッジ時間 860 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,336 KB
testcase_01 AC 20 ms
8,420 KB
testcase_02 AC 20 ms
8,472 KB
testcase_03 AC 19 ms
8,444 KB
testcase_04 AC 19 ms
8,420 KB
testcase_05 AC 19 ms
8,556 KB
testcase_06 AC 19 ms
8,416 KB
testcase_07 AC 19 ms
8,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
# md = 10**9+7
md = 998244353

from collections import deque

k = II()

qq = [deque() for _ in range(4)]
qq[0].append("A")
qq[0].append("E")
qq[1].append("B")
qq[2].append("C")
qq[3].append("D")

for i in range(k):
    i = i%4
    j = (i+1)%4
    c = qq[i].popleft()
    qq[j].append(c)

for i in range(4):
    ans = ""
    while qq[i]:
        ans += qq[i].popleft()
    print(ans)
0