結果

問題 No.75 回数の期待値の問題
ユーザー KudeKude
提出日時 2021-01-27 06:21:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 59,604 KB
最終ジャッジ日時 2024-06-24 04:24:50
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,952 KB
testcase_01 AC 43 ms
53,284 KB
testcase_02 AC 45 ms
52,504 KB
testcase_03 AC 46 ms
52,800 KB
testcase_04 AC 46 ms
52,472 KB
testcase_05 AC 44 ms
52,432 KB
testcase_06 AC 44 ms
52,488 KB
testcase_07 AC 43 ms
52,424 KB
testcase_08 AC 44 ms
52,188 KB
testcase_09 AC 43 ms
52,860 KB
testcase_10 AC 43 ms
52,620 KB
testcase_11 AC 44 ms
53,320 KB
testcase_12 AC 44 ms
52,864 KB
testcase_13 AC 44 ms
53,424 KB
testcase_14 AC 43 ms
52,996 KB
testcase_15 AC 42 ms
52,068 KB
testcase_16 AC 42 ms
53,288 KB
testcase_17 AC 45 ms
53,084 KB
testcase_18 AC 49 ms
59,140 KB
testcase_19 AC 46 ms
59,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
e = [0] * (k + 10)
x = [0] * (k + 10)
for i in range(k + 1, k + 6):
    x[i] = 1
for i in range(k)[::-1]:
    a = b = 0
    for j in range(i + 1, i + 7):
        a += e[j]
        b += x[j]
    e[i] = a / 6 + 1
    x[i] = b / 6
ans = e[0] / (1 - x[0])
print(ans)
0