結果

問題 No.133 カードゲーム
ユーザー huka_hukahuka_huka
提出日時 2021-08-14 12:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 61,588 KB
最終ジャッジ日時 2024-10-05 03:55:32
合計ジャッジ時間 1,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,748 KB
testcase_01 AC 34 ms
53,756 KB
testcase_02 AC 35 ms
52,468 KB
testcase_03 AC 32 ms
52,264 KB
testcase_04 AC 31 ms
51,952 KB
testcase_05 AC 38 ms
60,916 KB
testcase_06 AC 39 ms
60,996 KB
testcase_07 AC 39 ms
60,772 KB
testcase_08 AC 32 ms
52,740 KB
testcase_09 AC 33 ms
53,308 KB
testcase_10 AC 38 ms
60,676 KB
testcase_11 AC 40 ms
59,708 KB
testcase_12 AC 43 ms
61,284 KB
testcase_13 AC 34 ms
52,676 KB
testcase_14 AC 33 ms
52,872 KB
testcase_15 AC 34 ms
52,656 KB
testcase_16 AC 38 ms
60,456 KB
testcase_17 AC 37 ms
60,140 KB
testcase_18 AC 39 ms
60,632 KB
testcase_19 AC 36 ms
59,596 KB
testcase_20 AC 35 ms
60,196 KB
testcase_21 AC 39 ms
60,672 KB
testcase_22 AC 39 ms
61,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder133
from math import factorial
from itertools import permutations
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = 0
for a_order in permutations(a):
    for b_order in permutations(b):
        cnt = 0
        for i in range(n):
            if a_order[i] > b_order[i]:
                cnt += 1
        if cnt > n // 2:
            ans += 1
ans /= (factorial(n))**2
print(ans)
0