結果

問題 No.566 だいたい完全二分木
ユーザー rlangevinrlangevin
提出日時 2023-01-13 00:37:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 66,416 KB
最終ジャッジ日時 2024-06-06 05:03:57
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,520 KB
testcase_01 AC 37 ms
52,136 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 37 ms
52,564 KB
testcase_04 AC 35 ms
52,268 KB
testcase_05 AC 35 ms
52,656 KB
testcase_06 AC 36 ms
52,968 KB
testcase_07 AC 36 ms
53,000 KB
testcase_08 AC 41 ms
59,344 KB
testcase_09 AC 52 ms
64,644 KB
testcase_10 AC 51 ms
66,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(L):
    M = len(L)//2
    if M == 0:
        ans.append(L[0])
        return 
    ans.append(L[M])
    f(L[:M])
    f(L[M+1:])
    return
    

K = int(input())
N = 1 << K
L = list(range(1, N))
ans = []
f(L)
ans[0], ans[1] = ans[1], ans[0]
print(*ans)
0