結果

問題 No.1279 Array Battle
ユーザー rlangevinrlangevin
提出日時 2023-02-05 21:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-07-04 07:32:30
合計ジャッジ時間 2,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 38 ms
53,760 KB
testcase_08 AC 40 ms
53,376 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 39 ms
53,888 KB
testcase_11 AC 48 ms
61,952 KB
testcase_12 AC 48 ms
62,848 KB
testcase_13 AC 63 ms
69,248 KB
testcase_14 AC 54 ms
67,712 KB
testcase_15 AC 90 ms
76,388 KB
testcase_16 AC 99 ms
76,288 KB
testcase_17 AC 110 ms
76,180 KB
testcase_18 AC 115 ms
76,556 KB
testcase_19 AC 108 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from collections import *

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ans, maxv = 0, -1
D = defaultdict(int)
for tup in permutations(A):
    v = 0
    for i in range(N):
        v += max(0, tup[i] - B[i])
    D[v] += 1

for k, v in D.items():
    if k > maxv:
        ans = v
        maxv = k
print(ans)
0