結果

問題 No.65 回数の期待値の練習
ユーザー roiti46roiti46
提出日時 2015-02-04 15:15:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-23 07:28:31
合計ジャッジ時間 1,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 12 ms
6,400 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 11 ms
6,400 KB
testcase_07 AC 11 ms
6,272 KB
testcase_08 AC 12 ms
6,400 KB
testcase_09 AC 12 ms
6,144 KB
testcase_10 AC 12 ms
6,272 KB
testcase_11 AC 12 ms
6,400 KB
testcase_12 AC 11 ms
6,400 KB
testcase_13 AC 11 ms
6,400 KB
testcase_14 AC 12 ms
6,400 KB
testcase_15 AC 12 ms
6,528 KB
testcase_16 AC 12 ms
6,528 KB
testcase_17 AC 11 ms
6,400 KB
testcase_18 AC 12 ms
6,272 KB
testcase_19 AC 11 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def E(x,K):
    if x >= K: return 0.0
    else:
        if memo[x]: return memo[x]
        p = 1.0/6.0
        memo[x] = sum(E(x+i,K)*p for i in range(1,7))+1
        return memo[x]

K = int(raw_input())
memo = [0]*21
print E(0,K)
0