結果

問題 No.65 回数の期待値の練習
ユーザー akanayaakanaya
提出日時 2020-03-31 12:25:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,632 KB
実行使用メモリ 7,924 KB
最終ジャッジ日時 2023-09-06 13:48:17
合計ジャッジ時間 1,343 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,800 KB
testcase_01 AC 16 ms
7,768 KB
testcase_02 AC 16 ms
7,800 KB
testcase_03 AC 15 ms
7,732 KB
testcase_04 AC 15 ms
7,856 KB
testcase_05 AC 15 ms
7,800 KB
testcase_06 AC 15 ms
7,752 KB
testcase_07 AC 15 ms
7,764 KB
testcase_08 AC 15 ms
7,852 KB
testcase_09 AC 15 ms
7,924 KB
testcase_10 AC 15 ms
7,720 KB
testcase_11 AC 14 ms
7,868 KB
testcase_12 AC 13 ms
7,916 KB
testcase_13 AC 14 ms
7,800 KB
testcase_14 AC 15 ms
7,776 KB
testcase_15 AC 14 ms
7,776 KB
testcase_16 AC 14 ms
7,732 KB
testcase_17 AC 13 ms
7,736 KB
testcase_18 AC 13 ms
7,860 KB
testcase_19 AC 12 ms
7,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())

dp = [0] * (k + 6)
dp[0] = 1

for i in range(0, k):
    for j in range(1, 7):
        if i + j:
            dp[i + j] += dp[i] * 1/6

print(sum(dp[0:k]))


0