結果
問題 | No.133 カードゲーム |
ユーザー |
![]() |
提出日時 | 2021-04-19 17:54:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 1,185 bytes |
コンパイル時間 | 126 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-04 05:00:57 |
合計ジャッジ時間 | 1,881 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
import sys, refrom collections import deque, defaultdict, Counterfrom math import ceil, sqrt, hypot, factorial, pi, sin, cos, tan, asin, acos, atan, radians, degrees, log2, gcdfrom itertools import accumulate, permutations, combinations, combinations_with_replacement, product, groupbyfrom operator import itemgetter, mulfrom copy import deepcopyfrom string import ascii_lowercase, ascii_uppercase, digitsfrom bisect import bisect, bisect_left, insort, insort_leftfrom heapq import heappush, heappopfrom functools import reduce, lru_cachedef input(): return sys.stdin.readline().strip()def INT(): return int(input())def MAP(): return map(int, input().split())def LIST(): return list(map(int, input().split()))def TUPLE(): return tuple(map(int, input().split()))def ZIP(n): return zip(*(MAP() for _ in range(n)))sys.setrecursionlimit(10 ** 9)INF = float('inf')mod = 10 ** 9 + 7#mod = 998244353#from decimal import *#import numpy as np#decimal.getcontext().prec = 10N = INT()A = LIST()B = LIST()A_win = 0for a in permutations(A, N):for b in permutations(B, N):if sum([a[i] > b[i] for i in range(N)]) > N//2:A_win += 1print(A_win/(factorial(N))**2)