結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | maspy |
提出日時 | 2020-03-17 03:45:29 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 882 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 155,732 KB |
最終ジャッジ日時 | 2024-05-06 18:42:59 |
合計ジャッジ時間 | 9,879 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 200 ms
155,732 KB |
testcase_01 | AC | 683 ms
78,412 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | AC | 2,855 ms
78,904 KB |
testcase_06 | AC | 2,225 ms
78,232 KB |
testcase_07 | AC | 1,948 ms
77,880 KB |
testcase_08 | AC | 1,921 ms
77,720 KB |
testcase_09 | TLE | - |
ソースコード
#!/usr/bin/env python3.8 # %% import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import random # %% N, PA, PB = readline().split() N = int(N) PA = float(PA) PB = float(PB) A = sorted(map(int, readline().split())) B = sorted(map(int, readline().split())) # %% def select_card(A, P): if len(A) == 1: return 0 p = random.random() if p < P: return 0 n = len(A) return random.randint(1, n - 1) # %% def simulate(N, A, B): SA = 0 SB = 0 for _ in range(N): i = select_card(A, PA) j = select_card(B, PB) a = A.pop(i) b = B.pop(j) if a > b: SA += a + b elif a < b: SB += a + b return SA > SB # %% n_trial = 10 ** 6 win = sum(simulate(N, A[:], B[:]) for _ in range(n_trial)) print(win / n_trial)