結果

問題 No.75 回数の期待値の問題
ユーザー titiatitia
提出日時 2022-01-02 01:48:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 83,428 KB
最終ジャッジ日時 2024-10-10 21:26:36
合計ジャッジ時間 22,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
76,500 KB
testcase_01 AC 426 ms
76,552 KB
testcase_02 AC 452 ms
76,500 KB
testcase_03 AC 612 ms
76,084 KB
testcase_04 AC 433 ms
76,240 KB
testcase_05 AC 463 ms
76,252 KB
testcase_06 AC 441 ms
76,180 KB
testcase_07 AC 688 ms
76,560 KB
testcase_08 AC 709 ms
76,528 KB
testcase_09 AC 686 ms
76,500 KB
testcase_10 AC 719 ms
76,004 KB
testcase_11 AC 774 ms
76,104 KB
testcase_12 AC 850 ms
76,192 KB
testcase_13 AC 970 ms
76,408 KB
testcase_14 AC 1,054 ms
76,212 KB
testcase_15 AC 1,156 ms
76,148 KB
testcase_16 AC 4,280 ms
76,716 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

K=int(input())

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

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

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