結果

問題 No.58 イカサマなサイコロ
ユーザー tnodinotnodino
提出日時 2022-02-26 19:15:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,222 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-04 15:39:50
合計ジャッジ時間 8,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
76,928 KB
testcase_01 AC 1,222 ms
76,944 KB
testcase_02 AC 334 ms
76,704 KB
testcase_03 AC 207 ms
76,692 KB
testcase_04 AC 788 ms
77,056 KB
testcase_05 AC 895 ms
76,928 KB
testcase_06 AC 1,114 ms
76,928 KB
testcase_07 AC 342 ms
77,056 KB
testcase_08 AC 559 ms
76,928 KB
testcase_09 AC 1,058 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import randrange
INF = 10**6
N = int(input())
K = int(input())
cnt = 0
for _ in range(INF):
    A = 0
    B = 0
    for i in range(N):
        A += randrange(1,7)
    for i in range(N-K):
        B += randrange(1,7)
    for i in range(K):
        B += randrange(4,7)
    if A < B:
        cnt += 1
print(cnt / INF)
0