結果

問題 No.133 カードゲーム
ユーザー NoaSaberNoaSaber
提出日時 2021-03-11 14:21:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-04-21 04:22:50
合計ジャッジ時間 2,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 45 ms
52,480 KB
testcase_05 AC 49 ms
59,648 KB
testcase_06 AC 48 ms
61,056 KB
testcase_07 AC 47 ms
59,904 KB
testcase_08 AC 44 ms
52,480 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 46 ms
59,520 KB
testcase_11 AC 47 ms
59,904 KB
testcase_12 AC 48 ms
60,672 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 42 ms
52,248 KB
testcase_15 AC 45 ms
52,096 KB
testcase_16 AC 55 ms
60,576 KB
testcase_17 AC 46 ms
58,752 KB
testcase_18 AC 50 ms
60,032 KB
testcase_19 AC 52 ms
59,516 KB
testcase_20 AC 48 ms
60,032 KB
testcase_21 AC 50 ms
59,776 KB
testcase_22 AC 55 ms
59,904 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