結果

問題 No.133 カードゲーム
ユーザー tokuD_kyoprotokuD_kyopro
提出日時 2021-11-30 11:48:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 760 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 71,036 KB
最終ジャッジ日時 2024-07-03 05:34:43
合計ジャッジ時間 2,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
68,544 KB
testcase_01 AC 55 ms
67,036 KB
testcase_02 AC 54 ms
68,280 KB
testcase_03 AC 54 ms
68,000 KB
testcase_04 AC 56 ms
68,328 KB
testcase_05 AC 62 ms
69,968 KB
testcase_06 AC 64 ms
69,604 KB
testcase_07 AC 61 ms
69,704 KB
testcase_08 AC 58 ms
67,372 KB
testcase_09 AC 57 ms
67,632 KB
testcase_10 AC 62 ms
70,192 KB
testcase_11 AC 60 ms
69,708 KB
testcase_12 AC 64 ms
69,620 KB
testcase_13 AC 58 ms
67,404 KB
testcase_14 AC 64 ms
67,168 KB
testcase_15 AC 56 ms
66,964 KB
testcase_16 AC 61 ms
71,036 KB
testcase_17 AC 61 ms
68,440 KB
testcase_18 AC 60 ms
70,732 KB
testcase_19 AC 59 ms
70,272 KB
testcase_20 AC 64 ms
69,004 KB
testcase_21 AC 61 ms
70,680 KB
testcase_22 AC 63 ms
70,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#from __future__ import annotations
from typing import List,Union
import sys
input = sys.stdin.readline
# from collections import defaultdict,deque
from itertools import permutations,combinations
# from bisect import bisect_left,bisect_right
# import heapq
# sys.setrecursionlimit(10**5)

def main():
    N = int(input())
    A = list(map(int,input().split()))
    B = list(map(int,input().split()))

    total = 0
    wins = 0

    for a in permutations(A):
        for b in permutations(B):
            total += 1
            win = 0
            lose = 0
            for x,y in zip(a,b):
                if x > y: win += 1
                if x < y: lose += 1
            if win > lose: wins += 1

    print(wins/total)


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