結果

問題 No.58 イカサマなサイコロ
ユーザー Meso MesoMeso Meso
提出日時 2024-09-08 09:46:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 5,000 ms
コード長 370 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,188 KB
最終ジャッジ日時 2024-09-08 09:46:49
合計ジャッジ時間 6,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
76,800 KB
testcase_01 AC 938 ms
76,872 KB
testcase_02 AC 275 ms
76,736 KB
testcase_03 AC 180 ms
76,956 KB
testcase_04 AC 653 ms
77,028 KB
testcase_05 AC 721 ms
77,188 KB
testcase_06 AC 915 ms
77,176 KB
testcase_07 AC 299 ms
77,028 KB
testcase_08 AC 474 ms
77,088 KB
testcase_09 AC 828 ms
76,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

n = int(input())
k = int(input())

num = 800000
random.seed()
win = 0
for i in range(num):
    taro, jiro = 0, 0
    for j in range(n):
        jiro += random.randint(1, 6)
    for l in range(k):
        taro += random.randint(4, 6)
    for m in range(n-k):
        taro += random.randint(1, 6)
    if taro > jiro:
        win += 1
        
print(win/num)
0