結果

問題 No.133 カードゲーム
ユーザー atsuya02atsuya02
提出日時 2021-08-19 10:54:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-10-12 09:13:47
合計ジャッジ時間 2,060 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import math

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
win = 0

for v in itertools.permutations(A, N):
    check = 0
    for n in range(N):
        if v[n] < B[n]:
            check += 1
    if check < N/2:
        win += 1
print(win/math.factorial(N))
0