結果

問題 No.392 2分木をたどれ
ユーザー H20H20
提出日時 2021-10-01 11:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-18 17:25:52
合計ジャッジ時間 903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,456 KB
testcase_01 AC 73 ms
76,032 KB
testcase_02 AC 76 ms
76,032 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