結果

問題 No.1279 Array Battle
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-06 09:21:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,292 KB
最終ジャッジ日時 2024-07-23 02:41:38
合計ジャッジ時間 4,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 39 ms
52,808 KB
testcase_02 AC 44 ms
59,460 KB
testcase_03 AC 39 ms
52,816 KB
testcase_04 AC 37 ms
53,308 KB
testcase_05 AC 38 ms
53,372 KB
testcase_06 AC 37 ms
52,708 KB
testcase_07 AC 37 ms
53,340 KB
testcase_08 AC 38 ms
52,460 KB
testcase_09 AC 37 ms
52,872 KB
testcase_10 AC 43 ms
59,560 KB
testcase_11 AC 69 ms
68,824 KB
testcase_12 AC 116 ms
76,912 KB
testcase_13 AC 131 ms
76,688 KB
testcase_14 AC 137 ms
76,592 KB
testcase_15 AC 382 ms
76,240 KB
testcase_16 AC 445 ms
76,884 KB
testcase_17 AC 471 ms
76,688 KB
testcase_18 AC 439 ms
77,292 KB
testcase_19 AC 426 ms
76,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mx = -1
for p in permutations(A):
    mx = max(mx, sum(max(0, x-y) for x,y in zip(p, B)))
cnt = 0
for p in permutations(A):
    cnt += sum(max(0, x-y) for x,y in zip(p, B)) == mx
print(cnt)
0