結果

問題 No.392 2分木をたどれ
ユーザー mlihua09mlihua09
提出日時 2020-09-04 01:26:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-11-24 10:12:55
合計ジャッジ時間 967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,968 KB
testcase_01 AC 63 ms
76,288 KB
testcase_02 AC 66 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



for _ in range(int(input())):
    
    a = int(input())
    ans = ''
    while a > 0:
        if a % 2:
            ans += 'L'
        else:
            ans += 'R'
        a -= 1
        a //= 2
    print(ans[::-1])
0