結果

問題 No.65 回数の期待値の練習
ユーザー kou6839kou6839
提出日時 2014-11-26 13:38:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 338 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 76,708 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2025-01-03 08:54:44
合計ジャッジ時間 5,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,708 KB
testcase_01 AC 114 ms
41,600 KB
testcase_02 AC 114 ms
41,472 KB
testcase_03 AC 121 ms
41,524 KB
testcase_04 AC 124 ms
41,216 KB
testcase_05 AC 111 ms
41,436 KB
testcase_06 AC 114 ms
41,300 KB
testcase_07 AC 116 ms
41,468 KB
testcase_08 AC 118 ms
41,440 KB
testcase_09 AC 123 ms
41,572 KB
testcase_10 AC 115 ms
41,512 KB
testcase_11 AC 115 ms
41,728 KB
testcase_12 AC 114 ms
41,452 KB
testcase_13 AC 112 ms
41,636 KB
testcase_14 AC 114 ms
41,560 KB
testcase_15 AC 116 ms
41,600 KB
testcase_16 AC 124 ms
41,680 KB
testcase_17 AC 125 ms
41,688 KB
testcase_18 AC 126 ms
41,572 KB
testcase_19 AC 133 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	static double e(int x,int k){
		if(x>=k) return 0;
		return e(x+1,k)/6.0+e(x+2,k)/6.0+e(x+3,k)/6.0+e(x+4,k)/6.0+e(x+5,k)/6.0+e(x+6,k)/6.0+1;
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int k=sc.nextInt();
		System.out.println(e(0,k));
	}
}
0