結果

問題 No.66 輝け☆全国たこやき杯
ユーザー KudeKude
提出日時 2021-01-25 01:01:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,484 KB
最終ジャッジ日時 2024-06-11 19:20:27
合計ジャッジ時間 1,387 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,180 KB
testcase_01 AC 34 ms
52,548 KB
testcase_02 AC 33 ms
52,492 KB
testcase_03 AC 34 ms
53,884 KB
testcase_04 AC 35 ms
53,252 KB
testcase_05 AC 46 ms
62,764 KB
testcase_06 AC 50 ms
65,552 KB
testcase_07 AC 58 ms
70,696 KB
testcase_08 AC 72 ms
76,116 KB
testcase_09 AC 84 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
s = [int(input()) for _ in range(1 << m)]
dp = [1] * (1 << m)
for i in range(m):
    dp = [dp[j] * sum(dp[j ^ x ^ 1 << i] * s[j] ** 2 / (s[j] ** 2 + s[j ^ x ^ 1 << i] ** 2) for x in range(1 << i)) for j in range(1 << m)]
print(dp[0])
0