結果

問題 No.133 カードゲーム
ユーザー yasshi_noyasshi_no
提出日時 2020-09-06 11:32:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-05-06 20:52:45
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,896 KB
testcase_01 AC 56 ms
65,024 KB
testcase_02 AC 54 ms
65,408 KB
testcase_03 AC 59 ms
64,896 KB
testcase_04 AC 54 ms
65,024 KB
testcase_05 AC 60 ms
67,584 KB
testcase_06 AC 63 ms
67,968 KB
testcase_07 AC 59 ms
67,456 KB
testcase_08 AC 54 ms
65,536 KB
testcase_09 AC 55 ms
65,036 KB
testcase_10 AC 59 ms
67,840 KB
testcase_11 AC 59 ms
67,712 KB
testcase_12 AC 60 ms
67,968 KB
testcase_13 AC 55 ms
64,896 KB
testcase_14 AC 55 ms
64,896 KB
testcase_15 AC 55 ms
65,408 KB
testcase_16 AC 62 ms
68,096 KB
testcase_17 AC 61 ms
67,456 KB
testcase_18 AC 62 ms
68,096 KB
testcase_19 AC 60 ms
67,584 KB
testcase_20 AC 61 ms
67,968 KB
testcase_21 AC 62 ms
67,840 KB
testcase_22 AC 62 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,copy,itertools,math,string
import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def main():
    n = I()
    a = LI()
    b = LI()
    a_per = list(itertools.permutations(a))
    b_per = list(itertools.permutations(b))
    all_game = math.factorial(n)**2
    cnt_game = 0
    for acards in a_per:
        for bcards in b_per:
            acnt = 0
            for acard, bcard in zip(acards, bcards):
                if acard>bcard:
                    acnt+=1
            bcnt = n-acnt
            if acnt>bcnt:
                cnt_game+=1
    ans = cnt_game/all_game
    print(ans)

main()
0