結果

問題 No.58 イカサマなサイコロ
ユーザー titiatitia
提出日時 2021-12-16 00:45:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,196 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 77,360 KB
最終ジャッジ日時 2024-07-23 20:42:03
合計ジャッジ時間 8,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
77,076 KB
testcase_01 AC 1,196 ms
76,748 KB
testcase_02 AC 333 ms
76,992 KB
testcase_03 AC 219 ms
77,072 KB
testcase_04 AC 794 ms
77,360 KB
testcase_05 AC 904 ms
77,308 KB
testcase_06 AC 1,145 ms
76,940 KB
testcase_07 AC 340 ms
76,940 KB
testcase_08 AC 597 ms
76,836 KB
testcase_09 AC 1,087 ms
76,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

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

ANS=0
tests=10**6
for i in range(tests):
    A=0
    B=0
    for j in range(N):
        if j<K:
            A+=random.randint(4,6)
            B+=random.randint(1,6)
        else:
            A+=random.randint(1,6)
            B+=random.randint(1,6)
    if A>B:
        ANS+=1
    
print(ANS/tests)
0