結果
問題 | No.58 イカサマなサイコロ |
ユーザー | vwxyz |
提出日時 | 2021-09-23 21:13:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 308 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,948 KB |
最終ジャッジ日時 | 2024-07-05 09:33:10 |
合計ジャッジ時間 | 10,177 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,774 ms
11,008 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import random N=int(input()) K=int(input()) ans=0 for _ in range(5*10**5): s0,s1=0,0 for i in range(N): s0+=random.randint(1,6) for i in range(N-K): s1+=random.randint(1,6) for i in range(K): s1+=random.randint(4,6) if s0<s1: ans+=1 ans/=5*10**5 print(ans)