結果

問題 No.2228 Creeping Ghost
ユーザー wolgnikwolgnik
提出日時 2023-02-24 22:13:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 63,412 KB
最終ジャッジ日時 2024-09-13 05:36:30
合計ジャッジ時間 1,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 AC 38 ms
52,392 KB
testcase_02 AC 37 ms
53,148 KB
testcase_03 AC 38 ms
52,596 KB
testcase_04 AC 38 ms
52,524 KB
testcase_05 AC 54 ms
63,080 KB
testcase_06 AC 47 ms
57,448 KB
testcase_07 AC 57 ms
63,412 KB
testcase_08 AC 54 ms
63,052 KB
testcase_09 AC 47 ms
57,084 KB
testcase_10 AC 48 ms
57,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
T = int(input())

res = ["R", "L", "R", "D"]
res += ["R", "R", "D", "D"]
res += ["L", "R", "L", "U"]
res += ["U", "U", "L", "L"]

res *= -(-T // len(res))

print("".join(res)[: T])
0