結果
問題 | No.2228 Creeping Ghost |
ユーザー | wolgnik |
提出日時 | 2023-02-24 22:05:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 246 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 64,512 KB |
最終ジャッジ日時 | 2024-09-13 05:31:50 |
合計ジャッジ時間 | 2,513 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,412 KB |
testcase_01 | AC | 38 ms
53,068 KB |
testcase_02 | AC | 36 ms
52,364 KB |
testcase_03 | AC | 38 ms
52,492 KB |
testcase_04 | AC | 38 ms
52,500 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import sys input = sys.stdin.readline T = int(input()) res = ["R", "R", "R", "D"] res += ["L", "R", "L", "D"] res += ["L", "R", "L", "D"] res += ["D", "L", "U", "U"] res += ["U", "D", "U", "U"] res *= -(-T // len(res)) print("".join(res)[: T])