結果

問題 No.133 カードゲーム
ユーザー yasshi_noyasshi_no
提出日時 2020-09-06 11:32:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 69,824 KB
最終ジャッジ日時 2024-11-29 06:58:16
合計ジャッジ時間 2,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
65,436 KB
testcase_01 AC 52 ms
66,592 KB
testcase_02 AC 53 ms
66,176 KB
testcase_03 AC 52 ms
66,928 KB
testcase_04 AC 53 ms
65,524 KB
testcase_05 AC 56 ms
68,112 KB
testcase_06 AC 56 ms
68,228 KB
testcase_07 AC 57 ms
68,984 KB
testcase_08 AC 51 ms
65,388 KB
testcase_09 AC 52 ms
66,276 KB
testcase_10 AC 57 ms
68,484 KB
testcase_11 AC 56 ms
68,276 KB
testcase_12 AC 55 ms
69,500 KB
testcase_13 AC 51 ms
66,168 KB
testcase_14 AC 50 ms
66,228 KB
testcase_15 AC 52 ms
65,640 KB
testcase_16 AC 60 ms
69,824 KB
testcase_17 AC 58 ms
68,804 KB
testcase_18 AC 58 ms
68,976 KB
testcase_19 AC 59 ms
68,432 KB
testcase_20 AC 59 ms
68,288 KB
testcase_21 AC 57 ms
69,116 KB
testcase_22 AC 59 ms
69,100 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