結果

問題 No.75 回数の期待値の問題
ユーザー GrenacheGrenache
提出日時 2015-08-13 19:21:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-07-18 09:15:43
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,952 KB
testcase_01 AC 107 ms
52,680 KB
testcase_02 AC 100 ms
52,808 KB
testcase_03 AC 110 ms
53,608 KB
testcase_04 AC 113 ms
54,088 KB
testcase_05 AC 119 ms
54,052 KB
testcase_06 AC 117 ms
53,924 KB
testcase_07 AC 112 ms
54,060 KB
testcase_08 AC 110 ms
53,692 KB
testcase_09 AC 103 ms
52,540 KB
testcase_10 AC 115 ms
53,992 KB
testcase_11 AC 109 ms
53,604 KB
testcase_12 AC 108 ms
53,876 KB
testcase_13 AC 105 ms
52,908 KB
testcase_14 AC 110 ms
53,608 KB
testcase_15 AC 110 ms
53,768 KB
testcase_16 AC 105 ms
53,040 KB
testcase_17 AC 101 ms
53,040 KB
testcase_18 AC 117 ms
53,084 KB
testcase_19 AC 111 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder75_2 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int k = sc.nextInt();

        double[] a = new double[k + 1];
        double[] b = new double[k + 1];
        for (int i = k - 1; i >= 0; i--) {
        	b[i] = 1;
        	for (int j = 1; j <= 6; j++) {
        		if (i + j > k) {
        			a[i] += (double)1 / 6;
        		} else {
        			a[i] += a[i + j] / 6;
        			b[i] += b[i + j] / 6;
        		}
        	}
        }
        
        System.out.printf("%.3f\n", b[0] / (1 - a[0]));

        sc.close();
    }
}
0