結果

問題 No.58 イカサマなサイコロ
ユーザー kutsutamakutsutama
提出日時 2018-03-25 01:22:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 377 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-25 04:31:08
合計ジャッジ時間 9,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import random

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

tes = 10**5
cnt = 0
for i in range(tes):
    taro = 0
    jiro = 0
    for j in range(n):
        if j < k:
            taro += random.randint(4, 6)
        else:
            taro += random.randint(1, 6)
        jiro += random.randint(1, 6)
    if taro > jiro:
        cnt += 1
res = cnt / tes

print(res)
0