結果

問題 No.2228 Creeping Ghost
ユーザー flygonflygon
提出日時 2023-02-24 23:21:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 86 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 56,220 KB
最終ジャッジ日時 2024-09-13 06:08:59
合計ジャッジ時間 2,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,960 KB
testcase_01 AC 40 ms
53,236 KB
testcase_02 AC 38 ms
52,808 KB
testcase_03 AC 38 ms
52,504 KB
testcase_04 AC 39 ms
53,008 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
ans = ""
k = "RDRDRDRDULULULUL"
ans = k*(t//16) + k[:t%16]
print(ans)
0