結果

問題 No.75 回数の期待値の問題
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-01 16:27:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,928 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 00:34:14
合計ジャッジ時間 16,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
6,812 KB
testcase_01 AC 55 ms
6,940 KB
testcase_02 AC 76 ms
6,944 KB
testcase_03 AC 164 ms
6,944 KB
testcase_04 AC 97 ms
6,940 KB
testcase_05 AC 117 ms
6,944 KB
testcase_06 AC 137 ms
6,940 KB
testcase_07 AC 178 ms
6,944 KB
testcase_08 AC 196 ms
6,944 KB
testcase_09 AC 215 ms
6,944 KB
testcase_10 AC 232 ms
6,944 KB
testcase_11 AC 254 ms
6,944 KB
testcase_12 AC 277 ms
6,940 KB
testcase_13 AC 296 ms
6,944 KB
testcase_14 AC 316 ms
6,944 KB
testcase_15 AC 418 ms
6,940 KB
testcase_16 AC 1,746 ms
6,944 KB
testcase_17 AC 3,009 ms
6,944 KB
testcase_18 AC 3,655 ms
6,944 KB
testcase_19 AC 3,928 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=int(raw_input())
exp = [0.0 for i in range(K+1)]
for w in xrange(10000):
    for k in xrange(K-1,-1,-1):
        n=1.0
        for i in xrange(1,7):
            p = k+i
            if p > K:
                p = 0
            n+=exp[p]/6
        exp[k]=n
print exp[0]
0