結果

問題 No.1279 Array Battle
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-06 22:22:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 76,736 KB
最終ジャッジ日時 2024-07-22 13:05:53
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,840 KB
testcase_01 AC 41 ms
54,652 KB
testcase_02 AC 41 ms
55,528 KB
testcase_03 AC 45 ms
54,808 KB
testcase_04 AC 41 ms
54,684 KB
testcase_05 AC 41 ms
54,696 KB
testcase_06 AC 40 ms
53,960 KB
testcase_07 AC 41 ms
53,672 KB
testcase_08 AC 41 ms
53,484 KB
testcase_09 AC 42 ms
54,152 KB
testcase_10 AC 41 ms
55,240 KB
testcase_11 AC 49 ms
62,600 KB
testcase_12 AC 51 ms
64,372 KB
testcase_13 AC 60 ms
70,788 KB
testcase_14 AC 57 ms
69,264 KB
testcase_15 AC 92 ms
76,268 KB
testcase_16 AC 107 ms
76,112 KB
testcase_17 AC 109 ms
76,736 KB
testcase_18 AC 115 ms
76,308 KB
testcase_19 AC 111 ms
76,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, = map(int, input().split())
from itertools import permutations
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
from collections import defaultdict
D = defaultdict(int)
mx = 0
for x in permutations(X, N):
    R = 0
    for i in range(N):
        a,b=x[i],Y[i]
        if a>b:
            R+=a-b
    D[R] += 1
    mx = max(R, mx)
print(D[mx])
0