結果

問題 No.133 カードゲーム
ユーザー tomoyatomoya
提出日時 2024-08-24 06:10:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 703 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-08-24 06:10:25
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,392 KB
testcase_01 AC 33 ms
11,264 KB
testcase_02 AC 33 ms
11,392 KB
testcase_03 AC 33 ms
11,392 KB
testcase_04 AC 33 ms
11,392 KB
testcase_05 AC 34 ms
11,392 KB
testcase_06 AC 34 ms
11,392 KB
testcase_07 AC 35 ms
11,392 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 34 ms
11,392 KB
testcase_10 AC 34 ms
11,264 KB
testcase_11 AC 33 ms
11,392 KB
testcase_12 AC 40 ms
11,264 KB
testcase_13 AC 34 ms
11,264 KB
testcase_14 AC 33 ms
11,392 KB
testcase_15 AC 33 ms
11,392 KB
testcase_16 AC 33 ms
11,392 KB
testcase_17 AC 32 ms
11,264 KB
testcase_18 AC 34 ms
11,264 KB
testcase_19 AC 33 ms
11,392 KB
testcase_20 AC 35 ms
11,264 KB
testcase_21 AC 32 ms
11,264 KB
testcase_22 AC 33 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from bisect import bisect_right, bisect_left
from random import randint
from itertools import permutations
# from more_itertools import distinct_permutations
from heapq import heappush, heappop
import sys
import math
import copy
# from sortedcontainers import SortedList


sys.setrecursionlimit(100000000)

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

ans = 0
cnt2 = 0
for p1 in permutations(a):
    for p2 in permutations(b):
        cnt2 += 1
        cnt = 0
        for i in range(n):
            if p1[i] > p2[i]:
                cnt += 1
        if cnt > (n - cnt):
            ans += 1
ans /= cnt2
print(ans)
0