結果
問題 | No.66 輝け☆全国たこやき杯 |
ユーザー | rlangevin |
提出日時 | 2023-09-14 12:28:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 135 ms / 5,000 ms |
コード長 | 458 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 67,968 KB |
最終ジャッジ日時 | 2024-07-01 19:55:53 |
合計ジャッジ時間 | 1,597 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 41 ms
52,224 KB |
testcase_04 | AC | 54 ms
61,952 KB |
testcase_05 | AC | 59 ms
64,384 KB |
testcase_06 | AC | 59 ms
64,512 KB |
testcase_07 | AC | 69 ms
66,176 KB |
testcase_08 | AC | 83 ms
67,072 KB |
testcase_09 | AC | 135 ms
67,968 KB |
ソースコード
import sys input = sys.stdin.readline M = int(input()) M2 = 1 << M S = [0] * M2 for i in range(M2): S[i] = int(input()) pre = [1] * M2 for i in range(M): dp = [0] * M2 for j in range(M2): for k in range(M2): if j >> (i + 1) != k >> (i + 1): continue if (j >> i) & 1 != (k >> i) & 1: dp[j] += S[j] ** 2/(S[j] ** 2 + S[k] ** 2) * pre[j] * pre[k] dp, pre = pre, dp print(pre[0])