結果

問題 No.65 回数の期待値の練習
ユーザー spaciaspacia
提出日時 2016-01-20 11:10:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 659 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 75,456 KB
実行使用メモリ 37,240 KB
最終ジャッジ日時 2024-09-21 14:43:47
合計ジャッジ時間 3,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,872 KB
testcase_01 AC 43 ms
36,940 KB
testcase_02 AC 44 ms
36,872 KB
testcase_03 AC 46 ms
37,012 KB
testcase_04 AC 45 ms
37,112 KB
testcase_05 AC 49 ms
37,120 KB
testcase_06 AC 46 ms
36,668 KB
testcase_07 AC 43 ms
36,912 KB
testcase_08 AC 45 ms
36,720 KB
testcase_09 AC 45 ms
36,672 KB
testcase_10 AC 45 ms
36,856 KB
testcase_11 AC 47 ms
36,848 KB
testcase_12 AC 46 ms
37,052 KB
testcase_13 AC 45 ms
36,792 KB
testcase_14 AC 47 ms
37,240 KB
testcase_15 AC 46 ms
37,156 KB
testcase_16 AC 45 ms
37,156 KB
testcase_17 AC 44 ms
36,860 KB
testcase_18 AC 46 ms
36,744 KB
testcase_19 AC 46 ms
36,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	static int k;
	static double[] memo;
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static double E (int x) {
		if (memo[x] != -1) return memo[x];
		if (x >= k) return memo[x] = 0;
		return memo[x] = (E(x + 1) + E(x + 2) + E(x + 3) + E(x + 4) + E(x + 5) + E(x + 6)) / 6.0 + 1;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		k = Integer.parseInt(br.readLine());
		memo = new double[k + 6];
		Arrays.fill(memo , -1);
		
		E(0);
		
		out(memo[0]);
	}
}
0