結果

問題 No.58 イカサマなサイコロ
ユーザー kamomekamome
提出日時 2019-07-29 14:04:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-02 15:19:07
合計ジャッジ時間 4,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 436 ms
11,136 KB
testcase_05 AC 497 ms
11,136 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3
#!coding:utf-8
import random
def dice():
    return [1,2,3,4,5,6][random.randint(0,5)]
def cheat():
    return [4,5,6,4,5,6][random.randint(0,5)]
N=int(input())
K=int(input())
win=0
lose=0
for i in range(40000):
    m,n=0,0
    for j in range(N):
        m=m+dice()
    for k in range(N-K):
        n=n+dice()
    for l in range(K):
        n=n+cheat()
    if n>m:
        win=win+1
    else:
        lose=lose+1
print(win/40000)
0