結果

問題 No.133 カードゲーム
ユーザー Chunky_RBP_ChanChunky_RBP_Chan
提出日時 2022-03-02 01:34:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-08 08:37:12
合計ジャッジ時間 1,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#カードゲーム
#https://yukicoder.me/problems/199
from itertools import permutations

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A_perm = list(permutations(A))
B_perm = list(permutations(B))
ans = 0
for a in A_perm:
    for b in B_perm:
        awin = 0
        bwin = 0
        for an,bn in zip(a,b):
            if an > bn:
                awin += 1
            else:
                bwin += 1
        if awin > bwin:
            ans += 1
print(ans/(len(A_perm)*len(B_perm)))
0