結果

問題 No.133 カードゲーム
ユーザー k maedak maeda
提出日時 2024-10-04 20:19:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 494 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,588 KB
最終ジャッジ日時 2024-10-04 20:19:57
合計ジャッジ時間 11,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 432 ms
43,940 KB
testcase_01 AC 451 ms
44,200 KB
testcase_02 AC 433 ms
44,588 KB
testcase_03 AC 431 ms
44,076 KB
testcase_04 AC 453 ms
44,588 KB
testcase_05 AC 432 ms
44,192 KB
testcase_06 AC 451 ms
44,580 KB
testcase_07 AC 437 ms
44,200 KB
testcase_08 AC 429 ms
44,400 KB
testcase_09 AC 453 ms
44,324 KB
testcase_10 AC 434 ms
44,324 KB
testcase_11 AC 438 ms
44,580 KB
testcase_12 AC 461 ms
44,576 KB
testcase_13 AC 429 ms
44,500 KB
testcase_14 AC 438 ms
44,580 KB
testcase_15 AC 448 ms
44,580 KB
testcase_16 AC 437 ms
44,192 KB
testcase_17 AC 457 ms
44,192 KB
testcase_18 AC 435 ms
44,064 KB
testcase_19 AC 448 ms
43,940 KB
testcase_20 AC 464 ms
44,448 KB
testcase_21 AC 432 ms
44,328 KB
testcase_22 AC 442 ms
44,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import numpy as np

N = int(input())
cards_a = list(map(int, input().split()))
cards_b = list(map(int, input().split()))

total = 0
win_a = 0
for pattern_a in itertools.permutations(cards_a):
    for pattern_b in itertools.permutations(cards_b):
        pattern_a = np.array(list(pattern_a))
        pattern_b = np.array(list(pattern_b))
        fight = np.sum(pattern_a > pattern_b)
        if fight > N - fight:
            win_a += 1
        total += 1

print(win_a / total)
0