結果

問題 No.392 2分木をたどれ
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-13 18:45:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 79,828 KB
最終ジャッジ日時 2024-06-25 19:24:23
合計ジャッジ時間 1,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
78,712 KB
testcase_01 AC 150 ms
79,828 KB
testcase_02 AC 140 ms
79,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue
que=queue.Queue()
que.put(0)
dp=['']*10010
while not que.empty():
    v=que.get()
    if v>=5000:
        continue
    dp[v*2+1]=dp[v]+'L'
    dp[v*2+2]=dp[v]+'R'
    que.put(v*2+1)
    que.put(v*2+2)
N=int(input())
for i in range(N):
    A=int(input())
    print(dp[A])
0