結果

問題 No.566 だいたい完全二分木
ユーザー 👑 rin204rin204
提出日時 2022-01-19 23:26:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-05-02 20:02:21
合計ジャッジ時間 1,342 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 46 ms
58,368 KB
testcase_09 AC 52 ms
61,952 KB
testcase_10 AC 57 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())

ans = [i for i in range(1, k + 1)]
l = k + 1
r = (1 << k) - 1

lst = [(l, r)]
while lst:
    lst2 = []
    for l, r in lst:
        mid = (l + r) // 2
        ans.append(mid)
        if l != mid:
            lst2.append((l, mid - 1))
        if r != mid:
            lst2.append((mid + 1, r))
    
    lst = lst2

print(*ans)
0