結果

問題 No.392 2分木をたどれ
ユーザー convexineqconvexineq
提出日時 2020-12-06 22:49:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 70,828 KB
最終ジャッジ日時 2024-09-17 13:21:05
合計ジャッジ時間 672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,776 KB
testcase_01 AC 66 ms
70,808 KB
testcase_02 AC 63 ms
70,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    r = []
    c = int(input())
    while c:
        r.append("L" if c%2 else "R")
        c = (c-1)//2
    print("".join(r[::-1]))
0