結果

問題 No.2228 Creeping Ghost
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-19 11:46:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 187,328 KB
最終ジャッジ日時 2024-09-19 11:46:37
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,000 KB
testcase_01 AC 36 ms
53,420 KB
testcase_02 AC 35 ms
52,404 KB
testcase_03 AC 36 ms
52,004 KB
testcase_04 AC 35 ms
52,284 KB
testcase_05 AC 187 ms
187,000 KB
testcase_06 AC 122 ms
125,948 KB
testcase_07 AC 189 ms
187,244 KB
testcase_08 AC 183 ms
187,328 KB
testcase_09 AC 122 ms
125,904 KB
testcase_10 AC 126 ms
126,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/2228

def append(answer, targets):
    for t in targets:
        answer.append(t)

def main():
    T  = int(input())

    # 1回目の移動(1, 1) -> (2, 2)
    answer = [] 
    
    append(answer, ["D", "D", "U", "R"])
    # 2回目の移動(2, 2) -> (3, 3)
    append(answer, ["D", "D", "U", "R"])
    while len(answer) < T:
        # 3回目の移動
        append(answer, ["R", "R", "L", "U"])
        # 4回目の移動
        append(answer, ["R", "U", "L", "L"])
        # 5回目の移動
        append(answer, ["L", "L", "R", "D"])
        # 6回目の移動
        append(answer, ["D", "D", "U", "R"])

    answer0 = []
    for i in range(T):
        answer0.append(answer[i])
    print("".join(answer0))



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