結果

問題 No.1764 Square
ユーザー tamatotamato
提出日時 2021-11-26 22:22:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 54,632 KB
最終ジャッジ日時 2024-06-29 18:06:35
合計ジャッジ時間 959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
M = 5 * 10 ** 6


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    Q = []
    Q.append(deque(["A", "E"]))
    Q.append(deque(["B"]))
    Q.append(deque(["C"]))
    Q.append(deque(["D"]))
    for i in range(int(input())):
        s = Q[i%4].popleft()
        Q[(i+1) % 4].append(s)
    for i in range(4):
        S = "".join(list(Q[i]))
        print(S)


if __name__ == '__main__':
    main()
0