結果

問題 No.2228 Creeping Ghost
ユーザー ああいいああいい
提出日時 2023-02-25 19:11:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 86,688 KB
実行使用メモリ 74,060 KB
最終ジャッジ日時 2023-10-11 15:54:40
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,236 KB
testcase_01 AC 75 ms
71,176 KB
testcase_02 AC 74 ms
71,248 KB
testcase_03 AC 74 ms
71,276 KB
testcase_04 AC 76 ms
71,216 KB
testcase_05 AC 78 ms
73,816 KB
testcase_06 AC 76 ms
72,740 KB
testcase_07 AC 77 ms
74,060 KB
testcase_08 AC 76 ms
73,976 KB
testcase_09 AC 75 ms
72,484 KB
testcase_10 AC 76 ms
72,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

S = "DRLRDDRRLUDULLUU"
q = T // 16
r = T % 16
ans = S * q + S[:r]
print(ans)
0