結果

問題 No.133 カードゲーム
ユーザー neko0774neko0774
提出日時 2022-03-27 16:46:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 61,800 KB
最終ジャッジ日時 2024-11-06 10:26:03
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,720 KB
testcase_01 AC 41 ms
52,440 KB
testcase_02 AC 38 ms
53,052 KB
testcase_03 AC 37 ms
52,496 KB
testcase_04 AC 37 ms
53,008 KB
testcase_05 AC 44 ms
61,524 KB
testcase_06 AC 46 ms
61,800 KB
testcase_07 AC 44 ms
60,384 KB
testcase_08 AC 37 ms
52,008 KB
testcase_09 AC 37 ms
53,908 KB
testcase_10 AC 44 ms
61,132 KB
testcase_11 AC 44 ms
59,936 KB
testcase_12 AC 45 ms
61,032 KB
testcase_13 AC 38 ms
52,488 KB
testcase_14 AC 38 ms
53,132 KB
testcase_15 AC 38 ms
52,460 KB
testcase_16 AC 46 ms
60,952 KB
testcase_17 AC 44 ms
59,888 KB
testcase_18 AC 48 ms
61,364 KB
testcase_19 AC 43 ms
59,620 KB
testcase_20 AC 45 ms
60,808 KB
testcase_21 AC 46 ms
60,496 KB
testcase_22 AC 46 ms
60,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(i) for i in input().split()]
B = [int(i) for i in input().split()]

cnt = 0
import itertools as it 
for i in it.permutations(range(N)):
    #print(i)
    for j in it.permutations(range(N)):
        s = 0
        for k in range(N):
            if A[i[k]]>B[j[k]]:
                s += 1
        if s>N//2: cnt += 1 
c = 1
for i in range(1, N+1):
    c *= i
c *= c
print(cnt/c)
0