結果

問題 No.392 2分木をたどれ
ユーザー 👑 H20H20
提出日時 2021-10-01 11:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 86,744 KB
実行使用メモリ 78,084 KB
最終ジャッジ日時 2023-09-25 21:41:53
合計ジャッジ時間 1,306 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,080 KB
testcase_01 AC 137 ms
78,084 KB
testcase_02 AC 118 ms
78,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
for _ in range(m):
    i = int(input())+1
    print(format(i,'b')[1::].replace('0','L').replace('1','R'))
0