結果
問題 | No.65 回数の期待値の練習 |
ユーザー | kou6839 |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
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)); } }