結果

問題 No.58 イカサマなサイコロ
ユーザー pluto77pluto77
提出日時 2016-04-29 08:10:29
言語 PyPy2
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 286 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-10-04 17:35:53
合計ジャッジ時間 5,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
94,592 KB
testcase_01 WA -
testcase_02 AC 255 ms
94,464 KB
testcase_03 AC 216 ms
94,720 KB
testcase_04 AC 409 ms
94,464 KB
testcase_05 AC 447 ms
94,720 KB
testcase_06 AC 533 ms
94,080 KB
testcase_07 AC 262 ms
94,208 KB
testcase_08 AC 351 ms
94,208 KB
testcase_09 AC 514 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
#yuki_58
import random

n=int(raw_input())
k=int(raw_input())

res=0
for i in xrange(800000):
 temp=0
 for j in xrange(n):
  temp+=random.randrange(1,7)
  if j<k:
   temp-=random.randrange(4,7)
  else:
   temp-=random.randrange(1,7)
 res+=(temp<0)

print 1.0*res/800000
0