結果

問題 No.2228 Creeping Ghost
ユーザー AngrySadEightAngrySadEight
提出日時 2022-12-09 00:42:01
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 103 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 10,504 KB
実行使用メモリ 8,588 KB
最終ジャッジ日時 2023-08-10 23:41:36
合計ジャッジ時間 4,045 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
8,524 KB
testcase_01 AC 143 ms
8,548 KB
testcase_02 AC 147 ms
8,420 KB
testcase_03 AC 149 ms
8,444 KB
testcase_04 AC 141 ms
8,580 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
ans = 'RRRDDLLLDD'
for i in range(10000):
    ans += 'RRRRUUUULLLLDDDD'
print(ans[:T])
0