結果

問題 No.65 回数の期待値の練習
ユーザー H20H20
提出日時 2021-05-18 16:57:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 75,520 KB
最終ジャッジ日時 2024-10-08 18:20:43
合計ジャッジ時間 2,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 38 ms
51,200 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 47 ms
59,520 KB
testcase_10 AC 53 ms
61,184 KB
testcase_11 AC 62 ms
64,768 KB
testcase_12 AC 73 ms
70,656 KB
testcase_13 AC 71 ms
75,136 KB
testcase_14 AC 74 ms
75,520 KB
testcase_15 AC 78 ms
75,136 KB
testcase_16 AC 77 ms
75,392 KB
testcase_17 AC 88 ms
75,392 KB
testcase_18 AC 103 ms
75,392 KB
testcase_19 AC 137 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
ans = 0
#合計、回数、確率
def dfs(S,C,P):
    global ans
    if S>=K:
        ans+=C*P
        return
    dfs(S+1,C+1,P/6)
    dfs(S+2,C+1,P/6)
    dfs(S+3,C+1,P/6)
    dfs(S+4,C+1,P/6)
    dfs(S+5,C+1,P/6)
    dfs(S+6,C+1,P/6)

dfs(0,0,1)
print(ans)
0