結果

問題 No.133 カードゲーム
ユーザー c-yanc-yan
提出日時 2021-02-18 01:12:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 10,756 KB
実行使用メモリ 8,300 KB
最終ジャッジ日時 2023-10-12 10:49:58
合計ジャッジ時間 1,742 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,192 KB
testcase_01 AC 17 ms
8,228 KB
testcase_02 AC 15 ms
8,224 KB
testcase_03 AC 16 ms
8,064 KB
testcase_04 AC 15 ms
8,188 KB
testcase_05 AC 16 ms
8,128 KB
testcase_06 AC 17 ms
8,100 KB
testcase_07 AC 16 ms
8,132 KB
testcase_08 AC 15 ms
8,228 KB
testcase_09 AC 16 ms
8,148 KB
testcase_10 AC 16 ms
8,108 KB
testcase_11 AC 16 ms
8,148 KB
testcase_12 AC 17 ms
8,060 KB
testcase_13 AC 16 ms
8,116 KB
testcase_14 AC 15 ms
8,060 KB
testcase_15 AC 15 ms
8,184 KB
testcase_16 AC 17 ms
8,172 KB
testcase_17 AC 16 ms
8,184 KB
testcase_18 AC 16 ms
8,300 KB
testcase_19 AC 16 ms
8,132 KB
testcase_20 AC 16 ms
8,188 KB
testcase_21 AC 16 ms
8,120 KB
testcase_22 AC 16 ms
8,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

wins = 0
games = 0
for a in permutations(A):
    for b in permutations(B):
        games += 1
        t = 0
        for i in range(N):
            if a[i] > b[i]:
                t += 1
        if t > N // 2:
            wins += 1
print(wins / games)
0