結果

問題 No.65 回数の期待値の練習
ユーザー GrenacheGrenache
提出日時 2015-07-28 17:11:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 3,396 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-07-17 13:13:32
合計ジャッジ時間 6,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,984 KB
testcase_01 AC 129 ms
53,920 KB
testcase_02 AC 116 ms
52,988 KB
testcase_03 AC 129 ms
54,192 KB
testcase_04 AC 130 ms
54,120 KB
testcase_05 AC 128 ms
54,084 KB
testcase_06 AC 127 ms
53,652 KB
testcase_07 AC 127 ms
54,024 KB
testcase_08 AC 132 ms
53,868 KB
testcase_09 AC 132 ms
54,064 KB
testcase_10 AC 131 ms
54,216 KB
testcase_11 AC 130 ms
54,372 KB
testcase_12 AC 128 ms
53,876 KB
testcase_13 AC 129 ms
54,168 KB
testcase_14 AC 132 ms
54,148 KB
testcase_15 AC 132 ms
53,928 KB
testcase_16 AC 117 ms
52,740 KB
testcase_17 AC 117 ms
52,744 KB
testcase_18 AC 118 ms
52,984 KB
testcase_19 AC 131 ms
54,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder65 {

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

        int k = sc.nextInt();

        double[] e = new double[k + 1];
        e[k] = 0.0;
        for (int i = k - 1; i >= 0; i--) {
        	e[i] = 1;
        	for (int j = 0; j < 6; j++) {
        		if (i + j + 1 <= k) {
        			e[i] += e[i + j + 1] / 6;
        		}
        	}
        }

        System.out.printf("%.3f\n", e[0]);

        sc.close();
    }
}
0