結果

問題 No.173 カードゲーム(Medium)
ユーザー noko2250noko2250
提出日時 2015-04-11 09:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 596 ms / 3,000 ms
コード長 874 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,724 KB
最終ジャッジ日時 2024-07-04 13:38:32
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
77,056 KB
testcase_01 AC 259 ms
78,416 KB
testcase_02 AC 523 ms
78,724 KB
testcase_03 AC 562 ms
78,328 KB
testcase_04 AC 545 ms
78,500 KB
testcase_05 AC 390 ms
77,824 KB
testcase_06 AC 336 ms
77,440 KB
testcase_07 AC 285 ms
77,568 KB
testcase_08 AC 277 ms
77,568 KB
testcase_09 AC 596 ms
78,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/c/Python34/python
# coding: utf-8
import random


def simulate(n, pa, pb, A, B):
    a = b = 0
    a += 1
    for _ in range(n):
        ra, rb = random.random(), random.random()
        i, j = -1, -1
        if ra > pa and len(A) > 1:
            i = random.randrange(len(A)-1)
        if rb > pb and len(B) > 1:
            j = random.randrange(len(B)-1)
        if A[i] > B[j]:
            a += A[i] + B[j]
        else:
            b += A[i] + B[j]
        del A[i], B[j]
    return a > b

def main():
    [n, pa, pb] = map(float, input().split())
    n = int(n)
    A = sorted(list(map(int, input().split())), reverse=True)
    B = sorted(list(map(int, input().split())), reverse=True)
    win, check = 0, 100000
    for _ in range(check):
        if simulate(n, pa, pb, A[:], B[:]):
            win += 1
    print(win/check)


if __name__ == '__main__':
    main()
0