結果

問題 No.392 2分木をたどれ
ユーザー ntudantuda
提出日時 2024-01-14 00:21:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 70,764 KB
最終ジャッジ日時 2024-01-14 00:21:22
合計ジャッジ時間 1,301 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,332 KB
testcase_01 AC 70 ms
70,764 KB
testcase_02 AC 67 ms
70,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
for _ in range(m):
    a = int(input())
    tmp = []
    while a > 0:
        if a & 1:
            tmp.append("L")
        else:
            tmp.append("R")
        a = (a + 1) // 2 - 1
    print("".join(tmp[::-1]))
0