結果

問題 No.75 回数の期待値の問題
ユーザー titiatitia
提出日時 2022-01-02 01:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,013 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-10-10 21:27:08
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
76,280 KB
testcase_01 AC 112 ms
76,592 KB
testcase_02 AC 115 ms
76,076 KB
testcase_03 AC 142 ms
76,368 KB
testcase_04 AC 109 ms
76,336 KB
testcase_05 AC 108 ms
76,528 KB
testcase_06 AC 107 ms
76,668 KB
testcase_07 AC 147 ms
76,144 KB
testcase_08 AC 134 ms
76,396 KB
testcase_09 AC 133 ms
76,428 KB
testcase_10 AC 139 ms
76,260 KB
testcase_11 AC 145 ms
76,252 KB
testcase_12 AC 154 ms
76,096 KB
testcase_13 AC 156 ms
76,312 KB
testcase_14 AC 172 ms
76,636 KB
testcase_15 AC 190 ms
76,092 KB
testcase_16 AC 491 ms
76,524 KB
testcase_17 AC 836 ms
76,536 KB
testcase_18 AC 985 ms
76,536 KB
testcase_19 AC 1,013 ms
76,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

K=int(input())

ANS=0
for i in range(10**5):
    A=0
    S=0
    while S!=K:
        S+=random.randint(1,6)
        A+=1

        if S>K:
            S=0
    ANS+=A

print(ANS/(10**5))
0