結果

問題 No.133 カードゲーム
ユーザー zundamo-tizundamo-ti
提出日時 2020-10-05 13:04:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-19 20:23:58
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

n = int(input())
A = [int(x) for x in input().split()]
B = [int(x) for x in input().split()]

fac = 1
for i in range(1, n + 1):
    fac *= i

res = 0
for a in permutations(A):
    for b in permutations(B):
        wins = 0
        for i in range(n):
            if a[i] > b[i]:
                wins += 1
        if wins > n / 2:
            res += 1

ans = res / (fac**2)
print(ans)
0