結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,737 ms
77,376 KB
testcase_01 AC 4,737 ms
77,052 KB
testcase_02 AC 4,738 ms
77,224 KB
testcase_03 AC 4,739 ms
77,032 KB
testcase_04 AC 4,738 ms
77,072 KB
testcase_05 AC 4,740 ms
77,332 KB
testcase_06 AC 4,738 ms
77,064 KB
testcase_07 AC 4,739 ms
77,036 KB
testcase_08 AC 4,738 ms
77,056 KB
testcase_09 AC 4,738 ms
77,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time
from random import randint as ri

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

START=time()
TIME_LIMIT=4.7

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