結果

問題 No.66 輝け☆全国たこやき杯
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-22 01:20:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-08 11:44:58
合計ジャッジ時間 992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 53 ms
10,752 KB
testcase_09 AC 132 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    M = int(input())
    S = [int(input()) ** 2 for i in range(2**M)]
    return M, S

def solve(M, S):
    N = 2**M
    p = [1.0] * N
    for m in range(0, M-1):
        np = [0.0] * N
        for i in range(N):
            pi = p[i]
            Si = S[i]
            start = ((i >> m) ^ 1) << m
            for j in range(start, start + (1 << m)):
                np[i] += pi * p[j] * Si / (Si + S[j])
        p = np
    p0 = p[0]
    S0 = S[0]
    ans = p0 * sum(p[j] * S0 /(S0 + S[j]) for j in range(N//2, N))
    return ans

M, S = read_data()
print(solve(M, S))
0