結果

問題 No.1279 Array Battle
ユーザー marroncastle
提出日時 2020-11-06 21:42:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-22 12:31:32
合計ジャッジ時間 2,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
from collections import defaultdict
scores = defaultdict(lambda: 0)
max_score = 0
from itertools import groupby, accumulate, product, permutations, combinations
for perm in permutations(A, N):
  score = 0
  for i in range(N):
    score += max(0, perm[i]-B[i])
  scores[score] += 1
  max_score = max(max_score, score)
print(scores[max_score])
0