結果

問題 No.133 カードゲーム
ユーザー t-rryyyoooot-rryyyoooo
提出日時 2019-09-07 02:37:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 583 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,472 KB
最終ジャッジ日時 2024-06-25 02:05:24
合計ジャッジ時間 16,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 566 ms
44,084 KB
testcase_01 AC 568 ms
44,088 KB
testcase_02 AC 563 ms
44,352 KB
testcase_03 AC 560 ms
44,216 KB
testcase_04 AC 566 ms
44,212 KB
testcase_05 AC 563 ms
44,096 KB
testcase_06 AC 567 ms
44,344 KB
testcase_07 AC 572 ms
44,080 KB
testcase_08 AC 566 ms
44,340 KB
testcase_09 AC 558 ms
44,088 KB
testcase_10 AC 569 ms
44,136 KB
testcase_11 AC 572 ms
44,216 KB
testcase_12 AC 574 ms
44,088 KB
testcase_13 AC 579 ms
44,084 KB
testcase_14 AC 558 ms
44,472 KB
testcase_15 AC 573 ms
44,336 KB
testcase_16 AC 572 ms
44,336 KB
testcase_17 AC 583 ms
44,092 KB
testcase_18 AC 572 ms
44,216 KB
testcase_19 AC 568 ms
44,216 KB
testcase_20 AC 560 ms
44,088 KB
testcase_21 AC 572 ms
44,212 KB
testcase_22 AC 566 ms
44,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import math
import numpy as np


N = int(input())

a = list(map(int, input().split()))
b = list(map(int, input().split()))

per1 = list(itertools.permutations(list(range(N)), N))
per2 = list(itertools.permutations(list(range(N)), N))
cnt = 0
count = 0
c = 0
for x in per1:
    for y in per2:
        aa = np.array([ a[l] for l in x])
        bb = np.array([ b[m] for m in y])

        if np.where(aa>bb, True, False).sum() > N/2:
            count += 1


ans = count / math.factorial(N) ** 2
print(ans)


0