結果

問題 No.133 カードゲーム
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-12 02:02:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-11-16 04:50:17
合計ジャッジ時間 1,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,020 KB
testcase_01 AC 36 ms
53,820 KB
testcase_02 AC 33 ms
52,940 KB
testcase_03 AC 33 ms
52,516 KB
testcase_04 AC 34 ms
52,064 KB
testcase_05 AC 39 ms
60,652 KB
testcase_06 AC 41 ms
61,036 KB
testcase_07 AC 40 ms
60,516 KB
testcase_08 AC 39 ms
53,216 KB
testcase_09 AC 34 ms
52,204 KB
testcase_10 AC 39 ms
60,204 KB
testcase_11 AC 39 ms
60,720 KB
testcase_12 AC 40 ms
60,696 KB
testcase_13 AC 33 ms
52,828 KB
testcase_14 AC 34 ms
52,988 KB
testcase_15 AC 33 ms
52,748 KB
testcase_16 AC 42 ms
60,572 KB
testcase_17 AC 42 ms
60,000 KB
testcase_18 AC 43 ms
60,940 KB
testcase_19 AC 39 ms
59,700 KB
testcase_20 AC 38 ms
60,848 KB
testcase_21 AC 39 ms
60,852 KB
testcase_22 AC 39 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

import itertools
ans = 0
for a in itertools.permutations(A, n):
    for b in itertools.permutations(B, n):
        w = 0
        for i in range(n):
            if a[i] > b[i]:
                w += 1
        if w > n-w:
            ans += 1
import math
ans /= math.factorial(n)**2
print(ans)
0