結果
問題 | No.58 イカサマなサイコロ |
ユーザー | pluto77 |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 1 |
ソースコード
# 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