結果

問題 No.75 回数の期待値の問題
ユーザー rlangevinrlangevin
提出日時 2023-10-29 12:51:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 64,520 KB
最終ジャッジ日時 2024-09-25 16:41:04
合計ジャッジ時間 2,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,104 KB
testcase_01 AC 40 ms
53,368 KB
testcase_02 AC 44 ms
58,412 KB
testcase_03 AC 46 ms
59,360 KB
testcase_04 AC 42 ms
59,340 KB
testcase_05 AC 43 ms
58,936 KB
testcase_06 AC 42 ms
59,384 KB
testcase_07 AC 44 ms
60,616 KB
testcase_08 AC 45 ms
60,012 KB
testcase_09 AC 48 ms
60,184 KB
testcase_10 AC 45 ms
60,144 KB
testcase_11 AC 45 ms
61,864 KB
testcase_12 AC 46 ms
61,688 KB
testcase_13 AC 46 ms
61,480 KB
testcase_14 AC 46 ms
62,208 KB
testcase_15 AC 47 ms
62,468 KB
testcase_16 AC 50 ms
62,332 KB
testcase_17 AC 50 ms
64,320 KB
testcase_18 AC 52 ms
64,520 KB
testcase_19 AC 53 ms
64,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())


def check(m):
    dp = [1.0] * (K + 2)
    dp[-1] = m
    dp[K] = 0.0
    for i in range(K - 1, -1, -1):
        for j in range(1, 7):
            dp[i] += dp[min(i + j, K + 1)]/6
            
    return dp[0] <= dp[-1]

yes = 1e6
no = 0
for _ in range(60):
    mid = (yes + no)/2
    if check(mid):
        yes = mid
    else:
        no = mid
        
print(yes)
0