結果

問題 No.75 回数の期待値の問題
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-11-17 16:16:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 618 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-13 16:50:36
合計ジャッジ時間 5,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
76,796 KB
testcase_01 AC 134 ms
77,008 KB
testcase_02 AC 138 ms
77,184 KB
testcase_03 AC 133 ms
76,928 KB
testcase_04 AC 138 ms
76,928 KB
testcase_05 AC 131 ms
77,112 KB
testcase_06 AC 123 ms
77,312 KB
testcase_07 AC 128 ms
76,800 KB
testcase_08 AC 132 ms
76,928 KB
testcase_09 AC 130 ms
76,416 KB
testcase_10 AC 127 ms
76,680 KB
testcase_11 AC 131 ms
76,544 KB
testcase_12 AC 132 ms
76,544 KB
testcase_13 AC 146 ms
76,672 KB
testcase_14 AC 136 ms
76,984 KB
testcase_15 AC 158 ms
76,672 KB
testcase_16 AC 323 ms
76,804 KB
testcase_17 AC 511 ms
76,792 KB
testcase_18 AC 572 ms
76,684 KB
testcase_19 AC 618 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import random

EXP_TIMES = 50000


def roll_dice(k):
    n = 0
    s = 0
    while True:
        s += random.randint(1, 6)
        n += 1
        if s == k:
            return n
        elif s < k:
            continue
        else:
            s = 0
            continue


def get_expectation(k, e=EXP_TIMES):
    return sum(float(roll_dice(k)) for i in range(EXP_TIMES)) / float(e)


def main():
    print(get_expectation(int(input())))

if __name__ == "__main__":
    main()
0