結果

問題 No.58 イカサマなサイコロ
ユーザー htensaihtensai
提出日時 2019-12-06 13:59:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 949 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 76,896 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-12-23 05:15:24
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,156 KB
testcase_01 AC 107 ms
41,372 KB
testcase_02 AC 122 ms
41,292 KB
testcase_03 AC 108 ms
41,028 KB
testcase_04 AC 115 ms
40,000 KB
testcase_05 AC 126 ms
41,272 KB
testcase_06 AC 118 ms
41,620 KB
testcase_07 AC 118 ms
39,992 KB
testcase_08 AC 115 ms
40,200 KB
testcase_09 AC 118 ms
39,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		double[] rateA = new double[n * 6 + 1];
		double[] rateB = new double[n * 6 + 1];
		rateA[0] = 1;
		rateB[0] = 1;
		for (int i = 0; i < n; i++) {
		    double[] nextA = new double[n * 6 + 1];
		    double[] nextB = new double[n * 6 + 1];
		    for (int j = i; j < i * 6 + 1; j++) {
		        for (int a = 1; a <= 6; a++) {
		            nextA[j + a] += rateA[j] / 6;
		            if (i < k && a <= 3) {
		                nextB[j + a + 3] += rateB[j] / 6;
		            } else {
		                nextB[j + a] += rateB[j] / 6;
		            }
		        }
		    }
		    rateA = nextA;
		    rateB = nextB;
		}
		double rate = 0;
		for (int i = 1; i <= n * 6; i++) {
		    rateA[i] += rateA[i - 1];
		    rate += rateB[i] * rateA[i - 1];
		}
		System.out.println(rate);
   }
}

0