結果

問題 No.58 イカサマなサイコロ
ユーザー dangodango
提出日時 2023-07-09 20:41:34
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 203 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 77,456 KB
最終ジャッジ日時 2024-07-23 18:13:59
合計ジャッジ時間 6,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
77,440 KB
testcase_01 AC 958 ms
77,184 KB
testcase_02 AC 285 ms
76,672 KB
testcase_03 AC 191 ms
77,184 KB
testcase_04 AC 648 ms
77,212 KB
testcase_05 AC 737 ms
77,184 KB
testcase_06 WA -
testcase_07 AC 292 ms
77,044 KB
testcase_08 AC 501 ms
76,928 KB
testcase_09 AC 857 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
N = int(input())
K = int(input())
S = 0
T = 7 ** 7
for _ in range(T):
	A = 0
	for i in range(N): A += random.randrange(1,7) - random.randrange(4 if i < K else 1, 7)
	S += A < 0
print(S / T)
0