結果

問題 No.65 回数の期待値の練習
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-10-28 13:46:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 279 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-09-13 04:07:15
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
14,080 KB
testcase_01 AC 118 ms
14,080 KB
testcase_02 AC 128 ms
14,080 KB
testcase_03 AC 163 ms
14,080 KB
testcase_04 AC 132 ms
14,080 KB
testcase_05 AC 141 ms
14,080 KB
testcase_06 AC 150 ms
14,208 KB
testcase_07 AC 172 ms
13,952 KB
testcase_08 AC 177 ms
14,080 KB
testcase_09 AC 189 ms
13,952 KB
testcase_10 AC 197 ms
14,080 KB
testcase_11 AC 206 ms
14,080 KB
testcase_12 AC 216 ms
14,080 KB
testcase_13 AC 226 ms
14,080 KB
testcase_14 AC 234 ms
14,208 KB
testcase_15 AC 241 ms
14,080 KB
testcase_16 AC 252 ms
14,080 KB
testcase_17 AC 261 ms
13,952 KB
testcase_18 AC 272 ms
14,080 KB
testcase_19 AC 279 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import random
import statistics

EXP_TIMES = 50000


def roll_dice(k):
    n = 0
    s = 0
    while s < k:
        d = random.randint(1, 6)
        n += 1
        s += d
    return n


def get_expectation(k):
    return statistics.mean(float(roll_dice(k)) for i in range(EXP_TIMES))


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

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