結果
問題 | No.58 イカサマなサイコロ |
ユーザー | threepipes_s |
提出日時 | 2015-12-30 01:50:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 360 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-09-19 08:36:35 |
合計ジャッジ時間 | 8,041 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 309 ms
11,008 KB |
testcase_01 | WA | - |
testcase_02 | AC | 306 ms
11,008 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 866 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 303 ms
10,880 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1,091 ms
11,008 KB |
ソースコード
import random def win(n, k): n -= k sum = 0 for i in range(k): sum += random.randint(4, 6)-random.randint(1, 6) for i in range(n): sum += random.randint(1, 6)-random.randint(1, 6) return sum>0 n = int(input()) k = int(input()) trying = 100000 cnt = 0 for i in range(trying): if(win(n, k)): cnt += 1 print(cnt/trying)