結果

問題 No.58 イカサマなサイコロ
ユーザー htensaihtensai
提出日時 2019-12-06 13:59:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 949 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-06-02 09:21:17
合計ジャッジ時間 3,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,836 KB
testcase_01 AC 120 ms
41,004 KB
testcase_02 AC 115 ms
41,436 KB
testcase_03 AC 119 ms
41,520 KB
testcase_04 AC 117 ms
41,388 KB
testcase_05 AC 115 ms
40,132 KB
testcase_06 AC 123 ms
41,696 KB
testcase_07 AC 117 ms
41,188 KB
testcase_08 AC 101 ms
41,284 KB
testcase_09 AC 113 ms
41,484 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