結果

問題 No.58 イカサマなサイコロ
ユーザー fmhrfmhr
提出日時 2015-04-22 03:50:15
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 385 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-07-04 23:59:19
合計ジャッジ時間 5,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
76,800 KB
testcase_01 AC 780 ms
76,760 KB
testcase_02 AC 245 ms
76,740 KB
testcase_03 AC 174 ms
76,812 KB
testcase_04 AC 537 ms
76,596 KB
testcase_05 AC 603 ms
76,984 KB
testcase_06 AC 733 ms
77,140 KB
testcase_07 WA -
testcase_08 AC 385 ms
77,228 KB
testcase_09 AC 707 ms
77,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding=utf-8
import random
N = int(input())
K = int(input())
win = 0
NUM = 600000

random.seed()
for i in range(NUM):
    taro = 0
    jiro = 0
    for j in range(N):
        jiro += random.randrange(1, 7)
    for k in range(K):
        taro += random.randrange(4, 7)
    for l in range(N-K):
        taro += random.randrange(1, 7)
    if taro > jiro:
        win += 1
print(win/NUM)
0