結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | rlangevin |
提出日時 | 2023-10-30 00:02:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 844 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,504 KB |
実行使用メモリ | 85,252 KB |
最終ジャッジ日時 | 2024-09-25 16:59:39 |
合計ジャッジ時間 | 7,085 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 526 ms
85,252 KB |
testcase_01 | AC | 983 ms
79,388 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import random N, PA, PB = input().split() A = list(map(int, input().split())) B = list(map(int, input().split())) A.sort(reverse=True) B.sort(reverse=True) N = int(N) PA, PB = int(float(PA) * 1000) , int(float(PB) * 1000) win = 0 def f(L, P): temp = [] for i in range(N): v = random.randint(1, 1000) if v <= P or i == N - 1: temp.append(L.pop()) else: ind = random.randint(0, len(L) - 2) temp.append(L.pop(ind)) return temp for _ in range(10 ** 6): LA, LB = [], [] for i in range(N): LA.append(A[i]) LB.append(B[i]) VA = f(LA, PA) VB = f(LB, PB) SA, SB = 0, 0 for a, b in zip(VA, VB): if a > b: SA += a + b else: SB += a + b if SA > SB: win += 1 print(win/10**6)