結果

問題 No.2228 Creeping Ghost
ユーザー flygonflygon
提出日時 2023-02-24 23:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 57,888 KB
最終ジャッジ日時 2024-09-13 06:11:53
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,080 KB
testcase_01 AC 40 ms
52,384 KB
testcase_02 AC 37 ms
52,344 KB
testcase_03 AC 36 ms
51,896 KB
testcase_04 AC 37 ms
53,044 KB
testcase_05 AC 41 ms
57,888 KB
testcase_06 AC 40 ms
55,616 KB
testcase_07 AC 42 ms
56,012 KB
testcase_08 AC 44 ms
56,008 KB
testcase_09 AC 39 ms
54,556 KB
testcase_10 AC 40 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
st = "RRRDLLDL"
if t <= 8:
  print(st[:t])
else:
  t -= 8
  nxt = "DDRRRRUUUULLLLDD"
  ans = st + nxt*(t//16) + nxt[:t%16]
  print(ans)
0