結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 44 ms
60,416 KB
testcase_06 AC 44 ms
60,928 KB
testcase_07 AC 43 ms
60,768 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 44 ms
60,928 KB
testcase_11 AC 44 ms
61,056 KB
testcase_12 AC 47 ms
61,360 KB
testcase_13 AC 36 ms
52,608 KB
testcase_14 AC 36 ms
51,712 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 AC 45 ms
61,440 KB
testcase_17 AC 43 ms
60,160 KB
testcase_18 AC 45 ms
61,952 KB
testcase_19 AC 43 ms
61,184 KB
testcase_20 AC 43 ms
60,452 KB
testcase_21 AC 45 ms
61,184 KB
testcase_22 AC 45 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

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