結果

問題 No.2228 Creeping Ghost
ユーザー lloyzlloyz
提出日時 2023-12-30 01:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 149,864 KB
最終ジャッジ日時 2024-09-27 16:26:57
合計ジャッジ時間 2,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,468 KB
testcase_01 AC 37 ms
52,124 KB
testcase_02 AC 38 ms
53,544 KB
testcase_03 AC 37 ms
52,828 KB
testcase_04 AC 38 ms
53,216 KB
testcase_05 AC 147 ms
149,832 KB
testcase_06 AC 111 ms
110,880 KB
testcase_07 AC 144 ms
149,556 KB
testcase_08 AC 147 ms
149,864 KB
testcase_09 AC 111 ms
110,772 KB
testcase_10 AC 112 ms
110,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

q = -1
ANS = []
for i in range(t):
    r = i % 4
    if r == 0:
        if q <= 2:
            ANS.append('R')
        elif q == 3 or q == 7:
            ANS.append('U')
        else:
            ANS.append('L')
    elif r == 1:
        if q <= 2:
            ANS.append('L')
        elif q == 3 or q == 7:
            ANS.append('U')
        else:
            ANS.append('R')
    elif r == 2:
        if q <= 2:
            ANS.append('R')
        elif q == 3 or q == 7:
            ANS.append('D')
        else:
            ANS.append('L')
    else:
        if q <= 1:
            ANS.append('D')
        elif q == 2 or q == 6:
            ANS.append('U')
        elif q == 3:
            ANS.append('L')
        elif q == 7:
            ANS.append('R')
        else:
            ANS.append('D')
        q += 1
        q %= 8
print(''.join(ANS))
0