結果

問題 No.65 回数の期待値の練習
ユーザー DialBirdDialBird
提出日時 2017-02-20 20:46:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 463 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-06-09 16:32:48
合計ジャッジ時間 11,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
44,428 KB
testcase_01 AC 448 ms
44,428 KB
testcase_02 AC 452 ms
44,304 KB
testcase_03 AC 449 ms
43,920 KB
testcase_04 AC 440 ms
44,184 KB
testcase_05 AC 453 ms
44,048 KB
testcase_06 AC 448 ms
44,432 KB
testcase_07 AC 459 ms
44,300 KB
testcase_08 AC 444 ms
43,912 KB
testcase_09 AC 463 ms
43,784 KB
testcase_10 AC 449 ms
43,920 KB
testcase_11 AC 455 ms
43,916 KB
testcase_12 AC 446 ms
44,176 KB
testcase_13 AC 457 ms
44,172 KB
testcase_14 AC 453 ms
43,920 KB
testcase_15 AC 442 ms
44,184 KB
testcase_16 AC 447 ms
44,048 KB
testcase_17 AC 445 ms
43,920 KB
testcase_18 AC 454 ms
44,048 KB
testcase_19 AC 445 ms
43,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

K = int(input())
dp = np.zeros(25)
dp[K - 1] = 1

for i in reversed(range(K-1)):
    for j in range(1, 7):
        dp[i] += dp[i + j] / 6.0

    dp[i] += 1

print("{0:.4f}".format(dp[0]))
0