結果

問題 No.133 カードゲーム
ユーザー gorugo30gorugo30
提出日時 2021-03-05 18:52:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-10-06 20:54:11
合計ジャッジ時間 2,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = [i for i in range(N)]
A = list(map(int, input().split()))
B = list(map(int, input().split()))

from itertools import permutations
ans = 0
facn = 1
for i in range(N):
    facn *= i + 1
for pA in permutations(l):
    for pB in permutations(l):
        cntA = 0
        cntB = 0
        for i, j in zip(pA, pB):
            if A[i] > B[j]:
                cntA += 1
            if A[i] < B[j]:
                cntB += 1
        if cntA > cntB:
            ans += 1 / facn ** 2
print(ans)
0