結果

問題 No.58 イカサマなサイコロ
ユーザー cielciel
提出日時 2015-06-19 23:41:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 587 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-07-07 04:26:27
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
100,608 KB
testcase_01 AC 568 ms
101,120 KB
testcase_02 AC 263 ms
100,496 KB
testcase_03 AC 208 ms
100,992 KB
testcase_04 AC 430 ms
100,736 KB
testcase_05 AC 469 ms
100,736 KB
testcase_06 AC 587 ms
100,736 KB
testcase_07 AC 268 ms
100,864 KB
testcase_08 AC 368 ms
100,736 KB
testcase_09 AC 549 ms
100,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
N=input()
K=input()
s=0.
t=7**7
for _ in [0]*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