結果

問題 No.1279 Array Battle
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-11-07 17:45:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 88,524 KB
最終ジャッジ日時 2024-07-22 14:38:43
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,348 KB
testcase_01 AC 33 ms
51,824 KB
testcase_02 AC 36 ms
52,828 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 34 ms
52,672 KB
testcase_05 AC 33 ms
53,012 KB
testcase_06 AC 33 ms
52,164 KB
testcase_07 AC 33 ms
52,332 KB
testcase_08 AC 34 ms
52,036 KB
testcase_09 AC 34 ms
53,472 KB
testcase_10 AC 39 ms
53,700 KB
testcase_11 AC 41 ms
60,232 KB
testcase_12 AC 42 ms
62,564 KB
testcase_13 AC 54 ms
72,156 KB
testcase_14 AC 52 ms
70,988 KB
testcase_15 AC 97 ms
88,524 KB
testcase_16 AC 108 ms
87,908 KB
testcase_17 AC 111 ms
87,832 KB
testcase_18 AC 120 ms
87,856 KB
testcase_19 AC 107 ms
88,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
a.sort(reverse=True)
b.sort()
l = []
for i in itertools.permutations(range(n)):
    cost = 0
    for j,x in enumerate(i):
        if a[x] > b[j]:
            cost += a[x]-b[j]
    l.append(cost)
print(l.count(max(l)))
0