結果

問題 No.75 回数の期待値の問題
ユーザー convexineqconvexineq
提出日時 2020-12-06 06:02:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 59,540 KB
最終ジャッジ日時 2024-09-17 05:37:47
合計ジャッジ時間 1,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,520 KB
testcase_01 AC 40 ms
52,416 KB
testcase_02 AC 36 ms
52,084 KB
testcase_03 AC 37 ms
52,280 KB
testcase_04 AC 36 ms
53,348 KB
testcase_05 AC 37 ms
52,212 KB
testcase_06 AC 36 ms
53,620 KB
testcase_07 AC 37 ms
52,944 KB
testcase_08 AC 36 ms
52,596 KB
testcase_09 AC 37 ms
52,516 KB
testcase_10 AC 37 ms
53,416 KB
testcase_11 AC 36 ms
52,960 KB
testcase_12 AC 35 ms
52,904 KB
testcase_13 AC 37 ms
53,504 KB
testcase_14 AC 37 ms
52,396 KB
testcase_15 AC 37 ms
52,936 KB
testcase_16 AC 37 ms
53,156 KB
testcase_17 AC 37 ms
52,828 KB
testcase_18 AC 41 ms
58,872 KB
testcase_19 AC 41 ms
59,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
dp = [0.0]*(k+1)
prob = [0.0]*(k+1)
prob[0] = 1.0
for i in range(1,k+1):
    r = 0.0
    for j in range(1,7):
        r += dp[i-j] if i-j > 0 else 0        
    dp[i] = 1.0 + r/6
    r = 0.0
    for j in range(1,7):
        r += prob[i-j] if i-j >= 0 else 0        
    prob[i] = r/6
print(dp[k]/prob[k])
0