結果

問題 No.566 だいたい完全二分木
ユーザー kohei2019kohei2019
提出日時 2022-02-11 13:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 76,316 KB
最終ジャッジ日時 2024-06-27 07:02:19
合計ジャッジ時間 1,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,208 KB
testcase_01 AC 36 ms
53,008 KB
testcase_02 AC 35 ms
51,820 KB
testcase_03 AC 35 ms
52,904 KB
testcase_04 AC 35 ms
53,344 KB
testcase_05 AC 36 ms
52,872 KB
testcase_06 AC 36 ms
54,504 KB
testcase_07 AC 38 ms
54,092 KB
testcase_08 AC 43 ms
61,140 KB
testcase_09 AC 63 ms
70,728 KB
testcase_10 AC 73 ms
76,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())

ans = []
def dfs(t):
    ans.append(t)
    s = list(bin(t))
    s.reverse()
    i0 = 0
    for i in range(len(s)):
        if s[i] == '1':
            i0 = i
            break
    if i0 == 0:
        return
    dfs(t+2**(i-1))
    dfs(t-2**(i-1))

dfs(2**(K-1))
print(*(ans[:-3]+[1,3,2]))
0