結果

問題 No.133 カードゲーム
ユーザー flippergoflippergo
提出日時 2020-03-24 09:57:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-31 14:19:51
合計ジャッジ時間 2,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
import math
N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
win = 0
for x in permutations(B,N):
    cnt = 0
    for i in range(N):
        if A[i]>x[i]:
            cnt += 1
    if cnt>N-cnt:
        win += 1
print(win/math.factorial(N))
0