結果

問題 No.133 カードゲーム
ユーザー ntudantuda
提出日時 2023-12-26 22:40:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 481 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 62,352 KB
最終ジャッジ日時 2024-09-27 15:17:48
合計ジャッジ時間 2,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,396 KB
testcase_01 AC 39 ms
52,988 KB
testcase_02 AC 39 ms
53,240 KB
testcase_03 AC 38 ms
53,172 KB
testcase_04 AC 36 ms
52,004 KB
testcase_05 AC 43 ms
61,628 KB
testcase_06 AC 47 ms
62,352 KB
testcase_07 AC 46 ms
61,624 KB
testcase_08 AC 39 ms
53,600 KB
testcase_09 AC 39 ms
52,960 KB
testcase_10 AC 44 ms
60,044 KB
testcase_11 AC 45 ms
60,312 KB
testcase_12 AC 46 ms
61,000 KB
testcase_13 AC 40 ms
52,940 KB
testcase_14 AC 39 ms
53,048 KB
testcase_15 AC 39 ms
53,748 KB
testcase_16 AC 43 ms
60,292 KB
testcase_17 AC 43 ms
59,560 KB
testcase_18 AC 46 ms
60,720 KB
testcase_19 AC 45 ms
61,168 KB
testcase_20 AC 45 ms
61,220 KB
testcase_21 AC 47 ms
61,100 KB
testcase_22 AC 43 ms
60,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
from math import factorial
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
if N == 1:
    if A[0] > B[0]:
        print(1)
    else:
        print(0)
    exit()

win = 0
for a in permutations(A, N):
    for b in permutations(B, N):
        cnt = 0
        for i in range(N):
            if a[i] > b[i]:
                cnt += 1
        if cnt > N // 2:
            win += 1
print(win / (factorial(N)**2))
0