結果

問題 No.133 カードゲーム
ユーザー yns457yns457
提出日時 2024-05-31 18:29:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 872 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 62,024 KB
最終ジャッジ日時 2024-05-31 18:29:49
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,004 KB
testcase_01 AC 39 ms
54,228 KB
testcase_02 AC 38 ms
53,016 KB
testcase_03 AC 39 ms
53,112 KB
testcase_04 AC 39 ms
53,940 KB
testcase_05 AC 71 ms
61,680 KB
testcase_06 AC 47 ms
61,684 KB
testcase_07 AC 45 ms
60,876 KB
testcase_08 AC 40 ms
53,700 KB
testcase_09 AC 39 ms
53,832 KB
testcase_10 AC 45 ms
60,772 KB
testcase_11 AC 45 ms
60,576 KB
testcase_12 AC 47 ms
60,956 KB
testcase_13 AC 39 ms
52,248 KB
testcase_14 AC 38 ms
52,196 KB
testcase_15 AC 39 ms
52,460 KB
testcase_16 AC 47 ms
61,564 KB
testcase_17 AC 45 ms
61,292 KB
testcase_18 AC 49 ms
62,024 KB
testcase_19 AC 46 ms
60,548 KB
testcase_20 AC 44 ms
60,920 KB
testcase_21 AC 46 ms
60,224 KB
testcase_22 AC 46 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
hash_mod = 2147483647
dpos4 = ((1, 0), (0, 1), (-1, 0), (0, -1))
dpos8 = ((0, -1), (1, -1), (1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1))
from itertools import permutations
def main():
    N = ii()
    A = li()
    B = li()
    total = 0
    kati = 0
    for a_perm in permutations(range(N),N):
        for b_perm in permutations(range(N),N):
            a = 0
            b = 0
            for i in range(N):
                if A[a_perm[i]] > B[b_perm[i]]:
                    a += 1
                else:
                    b += 1
            if a > b:
                kati += 1

            total += 1

    print(kati/total)
                



if __name__ == '__main__':
    main()
0