結果

問題 No.133 カードゲーム
ユーザー NoaSaberNoaSaber
提出日時 2021-03-11 14:21:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 62,348 KB
最終ジャッジ日時 2024-10-13 02:47:24
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,872 KB
testcase_01 AC 35 ms
52,852 KB
testcase_02 AC 35 ms
53,512 KB
testcase_03 AC 35 ms
52,960 KB
testcase_04 AC 36 ms
53,404 KB
testcase_05 AC 39 ms
59,528 KB
testcase_06 AC 44 ms
61,800 KB
testcase_07 AC 40 ms
60,508 KB
testcase_08 AC 35 ms
52,668 KB
testcase_09 AC 36 ms
52,728 KB
testcase_10 AC 44 ms
60,376 KB
testcase_11 AC 40 ms
61,128 KB
testcase_12 AC 42 ms
61,420 KB
testcase_13 AC 35 ms
52,980 KB
testcase_14 AC 34 ms
52,804 KB
testcase_15 AC 35 ms
52,564 KB
testcase_16 AC 41 ms
60,808 KB
testcase_17 AC 41 ms
60,068 KB
testcase_18 AC 45 ms
61,416 KB
testcase_19 AC 44 ms
60,672 KB
testcase_20 AC 43 ms
60,056 KB
testcase_21 AC 42 ms
60,332 KB
testcase_22 AC 41 ms
62,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import itertools
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
A=list(itertools.permutations(A))
B=list(itertools.permutations(B))
t=math.factorial(N)
ans=0
for i in range(t):
    for j in range(t):
        a=A[i];b=B[j]
        tmp=0
        for k in range(N):
            if a[k]>b[k]:
                tmp+=1
        if tmp>N//2:
            ans+=1
print(ans/(t**2))
0