結果

問題 No.133 カードゲーム
ユーザー 山口日向山口日向
提出日時 2021-05-22 12:34:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 1,639 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 89,872 KB
最終ジャッジ日時 2024-10-10 10:54:43
合計ジャッジ時間 4,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
83,380 KB
testcase_01 AC 119 ms
83,264 KB
testcase_02 AC 115 ms
83,616 KB
testcase_03 AC 116 ms
83,864 KB
testcase_04 AC 117 ms
83,400 KB
testcase_05 AC 137 ms
89,388 KB
testcase_06 AC 137 ms
89,412 KB
testcase_07 AC 136 ms
89,624 KB
testcase_08 AC 119 ms
83,344 KB
testcase_09 AC 116 ms
83,632 KB
testcase_10 AC 135 ms
89,460 KB
testcase_11 AC 134 ms
89,404 KB
testcase_12 AC 138 ms
89,848 KB
testcase_13 AC 118 ms
83,800 KB
testcase_14 AC 117 ms
83,800 KB
testcase_15 AC 118 ms
83,680 KB
testcase_16 AC 137 ms
89,828 KB
testcase_17 AC 130 ms
89,552 KB
testcase_18 AC 135 ms
89,388 KB
testcase_19 AC 132 ms
89,280 KB
testcase_20 AC 133 ms
89,704 KB
testcase_21 AC 132 ms
89,872 KB
testcase_22 AC 134 ms
89,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from math import ceil, floor, sqrt, pi, factorial, gcd
from copy import copy, deepcopy
from collections import Counter, deque
from heapq import heapify, heappop, heappush
from itertools import accumulate, product, combinations, combinations_with_replacement, permutations
from bisect import bisect, bisect_left, bisect_right
from functools import reduce
from decimal import Decimal, getcontext
from operator import itemgetter
#import numpy as np #pypyでは使用不可
input = sys.stdin.readline
def int_input(): return int(input())
def int_map(): return map(int, input().split())
def int_list(): return list(int_map())
def int_row(N): return [int_input() for _ in range(N)]
def int_row_list(N): return [int_list() for _ in range(N)]
def str_input(): return input()[:-1]
def str_map(): return input().split()
def str_list(): return list(str_map())
def str_row(N): return [str_input() for _ in range(N)]
def str_row_list(N): return [list(str_input()) for _ in range(N)]
def lcm(a, b): return a * b // gcd(a, b)
sys.setrecursionlimit(10 ** 9)
INF = 1 << 60
MOD = 10 ** 9 + 7
mod = 998244353

#メモリ消費を抑える時はグローバル空間に書く
def main():
    n = int_input()
    a = int_list()
    b = int_list()

    ans = 0
    for V in permutations(a):
        for W in permutations(b):
            a_win = 0; b_win = 0
            for i in range(n):
                if V[i] > W[i]:
                    a_win += 1
                if V[i] < W[i]:
                    b_win += 1
            if a_win > b_win:
                ans += 1
    print(ans / (factorial(n) ** 2))

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