結果
| 問題 | No.58 イカサマなサイコロ |
| コンテスト | |
| ユーザー |
しらっ亭
|
| 提出日時 | 2015-08-22 12:13:27 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 4,923 ms / 5,000 ms |
| コード長 | 664 bytes |
| 記録 | |
| コンパイル時間 | 870 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 36,272 KB |
| 最終ジャッジ日時 | 2026-04-02 05:29:50 |
| 合計ジャッジ時間 | 55,641 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
import random
import threading
from time import sleep
def solve():
N = int(input())
K = int(input())
stop_event = threading.Event()
def monte():
w = g = 0
while not stop_event.is_set():
x = y = 0
for j in range(N):
if j < K:
x += random.randint(4, 6)
else:
x += random.randint(1, 6)
y += random.randint(1, 6)
g += 1
if x > y:
w += 1
print(w / g)
threading.Thread(target=monte).start()
sleep(4.8)
stop_event.set()
if __name__ == '__main__':
solve()
しらっ亭