結果

問題 No.65 回数の期待値の練習
ユーザー holegumaholeguma
提出日時 2015-08-12 03:10:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-07-18 06:51:19
合計ジャッジ時間 4,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,228 KB
testcase_01 AC 106 ms
41,276 KB
testcase_02 AC 111 ms
41,184 KB
testcase_03 AC 108 ms
41,136 KB
testcase_04 AC 95 ms
40,024 KB
testcase_05 AC 108 ms
41,368 KB
testcase_06 AC 110 ms
41,092 KB
testcase_07 AC 104 ms
40,920 KB
testcase_08 AC 116 ms
41,024 KB
testcase_09 AC 116 ms
41,332 KB
testcase_10 AC 109 ms
41,080 KB
testcase_11 AC 121 ms
41,108 KB
testcase_12 AC 93 ms
39,764 KB
testcase_13 AC 119 ms
41,184 KB
testcase_14 AC 112 ms
41,208 KB
testcase_15 AC 105 ms
41,132 KB
testcase_16 AC 117 ms
40,976 KB
testcase_17 AC 109 ms
41,084 KB
testcase_18 AC 107 ms
40,412 KB
testcase_19 AC 112 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
int n=Integer.parseInt(line);
double[] dp=new double[n+5];
dp[n-1]=1;
for(int i=n-2;i>=0;i--){
dp[i]=dp[i+1]/6+dp[i+2]/6+dp[i+3]/6+dp[i+4]/6+dp[i+5]/6+dp[i+6]/6+1;
}
out.printf("%.20f",dp[0]);
out.flush();
}
}
}
0