結果

問題 No.133 カードゲーム
ユーザー marroncastlemarroncastle
提出日時 2020-06-11 03:21:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-24 00:26:31
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
13,952 KB
testcase_01 AC 49 ms
13,952 KB
testcase_02 AC 55 ms
13,824 KB
testcase_03 AC 51 ms
13,952 KB
testcase_04 AC 52 ms
13,952 KB
testcase_05 AC 48 ms
13,952 KB
testcase_06 AC 52 ms
13,824 KB
testcase_07 AC 51 ms
13,952 KB
testcase_08 AC 49 ms
13,952 KB
testcase_09 AC 51 ms
13,824 KB
testcase_10 AC 50 ms
13,952 KB
testcase_11 AC 50 ms
13,824 KB
testcase_12 AC 51 ms
13,952 KB
testcase_13 AC 49 ms
13,952 KB
testcase_14 AC 49 ms
14,080 KB
testcase_15 AC 49 ms
13,952 KB
testcase_16 AC 50 ms
13,824 KB
testcase_17 AC 50 ms
13,824 KB
testcase_18 AC 50 ms
13,952 KB
testcase_19 AC 52 ms
13,952 KB
testcase_20 AC 50 ms
13,952 KB
testcase_21 AC 51 ms
13,824 KB
testcase_22 AC 50 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby, accumulate, product, permutations, combinations
from statistics import mean
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ans = []
for p in permutations(A,N):
    for q in permutations(B,N):
        cnt = 0
        for i in range(N):
            if p[i]>q[i]:
                cnt += 1
        if cnt>N//2:
            ans.append(1)
        else:
            ans.append(0)
ans = mean(ans)
print(ans)
0