結果
問題 | No.392 2分木をたどれ |
ユーザー | Konton7 |
提出日時 | 2019-04-30 18:37:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-09 19:47:54 |
合計ジャッジ時間 | 826 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
11,008 KB |
testcase_01 | AC | 51 ms
11,008 KB |
testcase_02 | AC | 50 ms
11,008 KB |
ソースコード
def numtolr(a): b = list(bin(a)[3:]) for i in range(len(b)): if b[i] == "0": b[i] = "L" else: b[i] = "R" return("".join(b)) bin_tree = [ numtolr(i+1) for i in range(4196) ] n = int(input()) for i in range(n): x = int(input()) print(bin_tree[x])