結果
問題 | No.58 イカサマなサイコロ |
ユーザー | fmhr |
提出日時 | 2015-04-21 23:45:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 77,440 KB |
最終ジャッジ日時 | 2024-07-04 19:16:22 |
合計ジャッジ時間 | 9,695 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import random N = int(input()) K = int(input()) result = [0, 0, 0] NUM = 10 ** 6 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, 6) if j < K: taro += random.randrange(4, 6) else: taro += random.randrange(1, 6) if taro > jiro: result[0] += 1 if taro < jiro: result[1] += 1 if taro == jiro: result[2] += 1 print(result[0]/NUM)