結果

問題 No.75 回数の期待値の問題
ユーザー 👑 rin204rin204
提出日時 2022-07-05 15:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,839 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,828 KB
最終ジャッジ日時 2024-12-15 22:23:31
合計ジャッジ時間 39,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,838 ms
76,788 KB
testcase_01 AC 1,837 ms
76,684 KB
testcase_02 AC 1,835 ms
76,300 KB
testcase_03 AC 1,836 ms
76,320 KB
testcase_04 AC 1,839 ms
76,460 KB
testcase_05 AC 1,838 ms
76,244 KB
testcase_06 AC 1,837 ms
76,580 KB
testcase_07 AC 1,837 ms
76,592 KB
testcase_08 AC 1,836 ms
76,424 KB
testcase_09 AC 1,836 ms
76,392 KB
testcase_10 AC 1,837 ms
76,504 KB
testcase_11 AC 1,837 ms
76,652 KB
testcase_12 AC 1,837 ms
76,744 KB
testcase_13 AC 1,836 ms
76,828 KB
testcase_14 AC 1,838 ms
76,392 KB
testcase_15 AC 1,837 ms
76,664 KB
testcase_16 AC 1,838 ms
76,384 KB
testcase_17 AC 1,838 ms
76,636 KB
testcase_18 AC 1,838 ms
76,484 KB
testcase_19 AC 1,839 ms
76,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
start = time.time()
import random

k = int(input())
cnt = 0
tot = 0
while time.time() - start < 1.8:
    x = 0
    cnt += 1
    while x != k:
        tot += 1
        x += random.randrange(1, 7)
        if x > k:
            x = 0
print(tot / cnt)
        

0