結果

問題 No.75 回数の期待値の問題
ユーザー hydruhydru
提出日時 2021-09-20 12:29:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 59,352 KB
最終ジャッジ日時 2024-07-02 13:29:26
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,488 KB
testcase_01 AC 34 ms
52,320 KB
testcase_02 AC 33 ms
52,332 KB
testcase_03 AC 32 ms
52,448 KB
testcase_04 AC 33 ms
53,012 KB
testcase_05 AC 33 ms
52,768 KB
testcase_06 AC 31 ms
52,868 KB
testcase_07 AC 34 ms
52,420 KB
testcase_08 AC 34 ms
53,080 KB
testcase_09 AC 34 ms
52,364 KB
testcase_10 AC 34 ms
53,068 KB
testcase_11 AC 33 ms
51,756 KB
testcase_12 AC 32 ms
52,152 KB
testcase_13 AC 37 ms
52,492 KB
testcase_14 AC 32 ms
53,680 KB
testcase_15 AC 35 ms
52,620 KB
testcase_16 AC 37 ms
52,408 KB
testcase_17 AC 35 ms
54,004 KB
testcase_18 AC 37 ms
59,352 KB
testcase_19 AC 37 ms
58,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
F=[0.0]*(k+1)
G=[0.0]*(k+1)
a=1/6

for i in range(k-1,-1,-1):
    for j in range(1,7):
        if(i+j<=k):
            F[i]+=F[i+j]*a
            G[i]+=G[i+j]*a
        else:
            F[i]+=a
    G[i]+=1

print(G[0]/(1-F[0]))
0