結果

問題 No.133 カードゲーム
ユーザー ronpooronpoo
提出日時 2023-08-22 17:29:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 61,968 KB
最終ジャッジ日時 2024-12-17 17:53:48
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,580 KB
testcase_01 AC 37 ms
52,644 KB
testcase_02 AC 36 ms
52,956 KB
testcase_03 AC 41 ms
52,744 KB
testcase_04 AC 38 ms
53,336 KB
testcase_05 AC 46 ms
61,288 KB
testcase_06 AC 46 ms
60,844 KB
testcase_07 AC 48 ms
61,284 KB
testcase_08 AC 38 ms
52,628 KB
testcase_09 AC 36 ms
52,004 KB
testcase_10 AC 45 ms
61,968 KB
testcase_11 AC 45 ms
60,360 KB
testcase_12 AC 46 ms
61,088 KB
testcase_13 AC 37 ms
53,348 KB
testcase_14 AC 37 ms
52,836 KB
testcase_15 AC 38 ms
52,004 KB
testcase_16 AC 45 ms
61,792 KB
testcase_17 AC 45 ms
60,180 KB
testcase_18 AC 48 ms
61,812 KB
testcase_19 AC 47 ms
60,752 KB
testcase_20 AC 44 ms
60,132 KB
testcase_21 AC 46 ms
61,636 KB
testcase_22 AC 48 ms
61,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

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

win = 0
cnt = 0
for pa in permutations(range(N)):
    for pb in permutations(range(N)):
        cnt += 1
        aw = 0
        bw = 0
        for a, b in zip(pa, pb):
            if A[a] > B[b]:
                aw += 1
            elif A[a] < B[b]:
                bw += 1
        if aw > bw:
            win += 1

ans = win / cnt
print(ans)
0