結果

問題 No.133 カードゲーム
ユーザー yansi819yansi819
提出日時 2024-05-25 12:48:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 62,292 KB
最終ジャッジ日時 2024-05-25 12:48:49
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,140 KB
testcase_01 AC 37 ms
53,268 KB
testcase_02 AC 37 ms
53,408 KB
testcase_03 AC 37 ms
52,076 KB
testcase_04 AC 37 ms
53,052 KB
testcase_05 AC 43 ms
60,404 KB
testcase_06 AC 45 ms
60,296 KB
testcase_07 AC 43 ms
59,616 KB
testcase_08 AC 36 ms
52,204 KB
testcase_09 AC 37 ms
52,724 KB
testcase_10 AC 43 ms
60,156 KB
testcase_11 AC 43 ms
60,148 KB
testcase_12 AC 44 ms
62,292 KB
testcase_13 AC 37 ms
53,560 KB
testcase_14 AC 37 ms
53,408 KB
testcase_15 AC 37 ms
52,660 KB
testcase_16 AC 43 ms
59,924 KB
testcase_17 AC 42 ms
59,228 KB
testcase_18 AC 44 ms
61,964 KB
testcase_19 AC 43 ms
59,804 KB
testcase_20 AC 43 ms
59,684 KB
testcase_21 AC 43 ms
61,764 KB
testcase_22 AC 43 ms
61,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
total, vic = 0, 0
for a in permutations(A):
    for b in permutations(B):
        total += 1
        cnt = 0
        for i in range(N):
            if a[i] > b[i]:
                cnt += 1
        if cnt > N // 2:
            vic += 1
print(vic / total)
0