結果

問題 No.2228 Creeping Ghost
ユーザー 👑 KazunKazun
提出日時 2023-02-24 22:47:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 89,380 KB
実行使用メモリ 78,124 KB
最終ジャッジ日時 2023-10-11 06:39:51
合計ジャッジ時間 2,283 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,016 KB
testcase_01 AC 76 ms
76,112 KB
testcase_02 AC 76 ms
76,120 KB
testcase_03 AC 76 ms
75,928 KB
testcase_04 AC 76 ms
76,184 KB
testcase_05 AC 79 ms
77,864 KB
testcase_06 AC 76 ms
76,772 KB
testcase_07 AC 75 ms
77,636 KB
testcase_08 AC 76 ms
78,124 KB
testcase_09 AC 75 ms
76,972 KB
testcase_10 AC 77 ms
77,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    T=int(input())
    X="RLRDRLRDRRDDLRLULRLULLUU"*(10**5)
    return X[:T]

#==================================================
print(solve())
0