結果
問題 | No.66 輝け☆全国たこやき杯 |
ユーザー | tenten |
提出日時 | 2020-12-23 08:23:36 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 241 ms / 5,000 ms |
コード長 | 1,071 bytes |
コンパイル時間 | 2,449 ms |
コンパイル使用メモリ | 77,080 KB |
実行使用メモリ | 54,992 KB |
最終ジャッジ日時 | 2024-09-21 16:16:23 |
合計ジャッジ時間 | 4,937 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
54,060 KB |
testcase_01 | AC | 135 ms
54,260 KB |
testcase_02 | AC | 137 ms
54,688 KB |
testcase_03 | AC | 138 ms
54,068 KB |
testcase_04 | AC | 140 ms
53,920 KB |
testcase_05 | AC | 144 ms
54,448 KB |
testcase_06 | AC | 148 ms
54,444 KB |
testcase_07 | AC | 163 ms
54,080 KB |
testcase_08 | AC | 201 ms
54,388 KB |
testcase_09 | AC | 241 ms
54,992 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int length = (1 << m); double[] strengths = new double[length]; for (int i = 0; i < length; i++) { strengths[i] = sc.nextInt(); } double[][] dp = new double[m + 1][length]; Arrays.fill(dp[0], 1); for (int i = 1; i <= m; i++) { for (int j = 0; j < length; j++) { int start = j; start >>= i - 1; if (start % 2 == 0) { start++; } else { start--; } start <<= i - 1; for (int k = start; k < start + (1 << (i - 1)); k++) { dp[i][j] += dp[i - 1][k] * Math.pow(strengths[j], 2) / (Math.pow(strengths[j], 2) + Math.pow(strengths[k], 2)); } dp[i][j] *= dp[i - 1][j]; } } System.out.println(dp[m][0]); } }