結果
問題 | No.58 イカサマなサイコロ |
ユーザー | fmhr |
提出日時 | 2015-04-22 03:42:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 539 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 18,080 KB |
最終ジャッジ日時 | 2024-07-04 23:52:29 |
合計ジャッジ時間 | 9,281 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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()) result = [0, 0, 0] NUM = (10 ** 5) * 2 table = ([1] * K) + ([0] * (N-K)) random.seed() for i in range(NUM): taro = 0 jiro = 0 for j in range(N): jiro += random.randrange(1, 7) if random.sample(table, 1) == [1]: taro += random.randrange(4, 7) else: taro += random.randrange(1, 7) if taro > jiro: result[0] += 1 if taro < jiro: result[1] += 1 if taro == jiro: result[2] += 1 print(result[0]/NUM)