結果

問題 No.75 回数の期待値の問題
ユーザー mkawa2mkawa2
提出日時 2020-01-10 16:49:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,153 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-23 22:05:14
合計ジャッジ時間 7,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
76,544 KB
testcase_01 AC 116 ms
76,364 KB
testcase_02 AC 119 ms
76,544 KB
testcase_03 AC 145 ms
76,244 KB
testcase_04 AC 119 ms
76,288 KB
testcase_05 AC 130 ms
76,116 KB
testcase_06 AC 116 ms
76,296 KB
testcase_07 AC 143 ms
76,288 KB
testcase_08 AC 149 ms
76,496 KB
testcase_09 AC 145 ms
76,288 KB
testcase_10 AC 149 ms
76,416 KB
testcase_11 AC 171 ms
76,288 KB
testcase_12 AC 164 ms
76,032 KB
testcase_13 AC 172 ms
76,288 KB
testcase_14 AC 177 ms
76,288 KB
testcase_15 AC 200 ms
76,308 KB
testcase_16 AC 532 ms
76,252 KB
testcase_17 AC 892 ms
76,288 KB
testcase_18 AC 1,055 ms
76,288 KB
testcase_19 AC 1,153 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from random import randrange

def II(): return int(sys.stdin.readline())

def main():
    k = II()
    throw=0
    turn=100000
    for _ in range(turn):
        s=0
        while s!=k:
            s+=randrange(1,7)
            throw+=1
            if s>k:s=0
    print(throw/turn)

main()
0