結果

問題 No.66 輝け☆全国たこやき杯
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 21:28:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 76,420 KB
最終ジャッジ日時 2024-10-10 15:03:56
合計ジャッジ時間 1,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 37 ms
52,536 KB
testcase_02 AC 37 ms
52,560 KB
testcase_03 AC 39 ms
53,780 KB
testcase_04 AC 50 ms
63,272 KB
testcase_05 AC 63 ms
65,880 KB
testcase_06 AC 54 ms
65,528 KB
testcase_07 AC 63 ms
68,772 KB
testcase_08 AC 79 ms
73,276 KB
testcase_09 AC 140 ms
76,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())
S = [int(input()) for i in range(1<<M)]
dp = [[1]*(1<<M) for i in range(M+1)]
for i in range(M):
    for a in range(1<<M):
        win = dp[i][a]
        count = 0
        for b in range(1<<M):
            if a >> i+1 != b >> i+1:
                continue
            if a >> i & 1 == b >> i & 1:
                continue
            count += S[a]**2/(S[a]**2+S[b]**2)*dp[i][b]
        dp[i+1][a] = win*count
print(dp[-1][0])
0