結果

問題 No.58 イカサマなサイコロ
ユーザー KazunKazun
提出日時 2020-10-03 02:56:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,639 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,328 KB
最終ジャッジ日時 2024-07-18 04:00:30
合計ジャッジ時間 51,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,637 ms
77,252 KB
testcase_01 AC 4,637 ms
77,128 KB
testcase_02 AC 4,638 ms
77,236 KB
testcase_03 AC 4,637 ms
77,032 KB
testcase_04 AC 4,639 ms
77,276 KB
testcase_05 AC 4,636 ms
77,304 KB
testcase_06 AC 4,637 ms
77,328 KB
testcase_07 AC 4,639 ms
77,008 KB
testcase_08 AC 4,637 ms
77,308 KB
testcase_09 AC 4,637 ms
77,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time
from random import randint as ri

N=int(input())
K=int(input())

START=time()
TIME_LIMIT=4.6

Battle=0
Win=0
while time()-START<=TIME_LIMIT:
    Battle+=1

    A=B=0
    for i in range(N):
        A+=ri(1,6)

    for i in range(N):
        if i<K:
            B+=ri(4,6)
        else:
            B+=ri(1,6)

    if A<B:
        Win+=1

print(Win/Battle)
0