結果

問題 No.173 カードゲーム(Medium)
ユーザー chocoruskchocorusk
提出日時 2020-09-14 12:18:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 3,000 ms
コード長 924 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 78,124 KB
最終ジャッジ日時 2024-06-22 00:44:44
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
76,540 KB
testcase_01 AC 146 ms
77,712 KB
testcase_02 AC 453 ms
78,116 KB
testcase_03 AC 448 ms
78,124 KB
testcase_04 AC 432 ms
78,044 KB
testcase_05 AC 339 ms
77,444 KB
testcase_06 AC 284 ms
77,256 KB
testcase_07 AC 253 ms
77,416 KB
testcase_08 AC 240 ms
77,184 KB
testcase_09 AC 527 ms
78,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines

npapb=readline().split()
n=int(npapb[0])
pa=float(npapb[1])
pb=float(npapb[2])
a0=list(map(int, readline().split()))
b0=list(map(int, readline().split()))
a0.sort()
b0.sort()
cnt=0
import random
for _ in range(100000):
    sa, sb=0, 0
    a=a0[:]
    b=b0[:]
    for i in range(n):
        if i==n-1:
            if a[0]>b[0]:
                sa+=a[0]+b[0]
            else:
                sb+=a[0]+b[0]
            break
        ra=random.random()
        rb=random.random()
        ia, ib=0, 0
        if ra>pa:
            ia=random.randint(1, n-i-1)
        if rb>pb:
            ib=random.randint(1, n-i-1)
        a1=a[ia]
        b1=b[ib]
        if a1>b1:
            sa+=a1+b1
        else:
            sb+=a1+b1
        a.remove(a1)
        b.remove(b1)
    if sa>sb:
        cnt+=1
print(cnt/100000.0)
0