結果

問題 No.58 イカサマなサイコロ
ユーザー fmhrfmhr
提出日時 2015-06-19 13:15:27
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 221 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 77,080 KB
最終ジャッジ日時 2024-07-07 03:55:07
合計ジャッジ時間 5,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
77,080 KB
testcase_01 AC 714 ms
76,428 KB
testcase_02 AC 208 ms
76,756 KB
testcase_03 AC 140 ms
77,008 KB
testcase_04 AC 497 ms
76,812 KB
testcase_05 AC 588 ms
76,492 KB
testcase_06 AC 729 ms
76,752 KB
testcase_07 WA -
testcase_08 AC 355 ms
76,604 KB
testcase_09 AC 663 ms
76,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
N=int(input())
K=int(input())
w=0
c=755000
a=random.randrange
r=range
for i in r(c):
	t=0
	j=0
	for _ in r(N):
		j+=a(1,7)
	for _ in r(K):
		t+=a(4,7)
	for _ in r(N-K):
		t+=a(1,7)
	if t>j:
		w+=1
print(w/c)
0