結果

問題 No.133 カードゲーム
ユーザー nanaenanae
提出日時 2017-02-23 23:16:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-25 03:48:42
合計ジャッジ時間 1,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from math import factorial

def solve():
    N = int(input())
    A = [int(i) for i in input().split()]
    B = [int(i) for i in input().split()]
    tot = factorial(N) ** 2
    win = 0

    for pA in permutations(A):
        for pB in permutations(B):
            cnt = 0
            for a, b in zip(pA, pB):
                if a > b:
                    cnt += 1

            if cnt > N - cnt:
                win += 1

    ans = win / tot
    print(ans)

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

if __name__ == '__main__':
    solve()
0