結果

問題 No.75 回数の期待値の問題
ユーザー mkawa2mkawa2
提出日時 2020-01-10 16:48:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-11-23 22:05:03
合計ジャッジ時間 35,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 389 ms
21,632 KB
testcase_01 AC 391 ms
17,828 KB
testcase_02 AC 390 ms
10,880 KB
testcase_03 AC 620 ms
10,880 KB
testcase_04 AC 392 ms
10,880 KB
testcase_05 AC 391 ms
10,880 KB
testcase_06 AC 393 ms
10,880 KB
testcase_07 AC 641 ms
11,008 KB
testcase_08 AC 670 ms
10,880 KB
testcase_09 AC 712 ms
10,880 KB
testcase_10 AC 768 ms
10,880 KB
testcase_11 AC 811 ms
10,880 KB
testcase_12 AC 900 ms
10,880 KB
testcase_13 AC 949 ms
10,880 KB
testcase_14 AC 1,001 ms
10,880 KB
testcase_15 AC 1,282 ms
11,008 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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