結果

問題 No.162 8020運動
ユーザー ぴろずぴろず
提出日時 2015-03-06 00:37:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 312 ms / 5,000 ms
コード長 1,158 bytes
コンパイル時間 3,284 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-24 09:51:22
合計ジャッジ時間 10,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
54,136 KB
testcase_01 AC 253 ms
54,004 KB
testcase_02 AC 283 ms
54,248 KB
testcase_03 AC 311 ms
54,144 KB
testcase_04 AC 308 ms
54,336 KB
testcase_05 AC 295 ms
54,132 KB
testcase_06 AC 305 ms
54,272 KB
testcase_07 AC 312 ms
54,204 KB
testcase_08 AC 310 ms
54,248 KB
testcase_09 AC 173 ms
54,284 KB
testcase_10 AC 283 ms
54,248 KB
testcase_11 AC 252 ms
54,156 KB
testcase_12 AC 225 ms
54,124 KB
testcase_13 AC 306 ms
54,316 KB
testcase_14 AC 174 ms
54,376 KB
testcase_15 AC 188 ms
54,380 KB
testcase_16 AC 211 ms
54,152 KB
testcase_17 AC 212 ms
54,204 KB
testcase_18 AC 299 ms
54,236 KB
testcase_19 AC 277 ms
54,108 KB
testcase_20 AC 286 ms
54,368 KB
testcase_21 AC 268 ms
54,292 KB
testcase_22 AC 276 ms
54,100 KB
testcase_23 AC 288 ms
54,104 KB
testcase_24 AC 282 ms
54,072 KB
testcase_25 AC 289 ms
54,352 KB
testcase_26 AC 173 ms
54,024 KB
testcase_27 AC 253 ms
54,328 KB
testcase_28 AC 302 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no162;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		double p0 = sc.nextInt() / 100.0;
		double p1 = sc.nextInt() / 100.0;
		double p2 = sc.nextInt() / 100.0;
		double[][] dp = new double[21][15];
		for(int i=0;i<15;i++) {
			dp[0][i] = i;
		}
		int n = 80 - a;
		for(int i=1;i<=n;i++) {
			for(int j=1;j<15;j++) {
				double e = 0;
				for(int k=0;k<1<<j;k++) { //抜け方
					double p = 1;
					for(int l=0;l<j;l++) {
						boolean nuketa = ((k>>l&1) == 1);
						int count = (l == 0 ? 0 : 1) + (l == j - 1 ? 0 : 1);
						if (count == 0) {
							p *= nuketa ? p0 : 1 - p0;
						}else if(count == 1) {
							p *= nuketa ? p1 : 1 - p1;
						}else{
							p *= nuketa ? p2 : 1 - p2;
						}
					}
					double sum = 0;
					int seq = 0;
					for(int l=0;l<=j;l++) {
						if ((k>>l&1) == 0 && (l < j)) {
							seq++;
						}else{
							sum += dp[i-1][seq];
							seq = 0;
						}
					}
					e += p * sum;
				}
				dp[i][j] = e;
			}
		}
//		System.out.println(Arrays.deepToString(dp));
		System.out.println(dp[n][14] * 2);
	}

}
0