結果

問題 No.1279 Array Battle
ユーザー marroncastlemarroncastle
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 45 ms
53,120 KB
testcase_05 AC 46 ms
53,376 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 45 ms
53,632 KB
testcase_08 AC 45 ms
53,248 KB
testcase_09 AC 45 ms
53,760 KB
testcase_10 AC 46 ms
53,632 KB
testcase_11 AC 55 ms
61,952 KB
testcase_12 AC 57 ms
62,720 KB
testcase_13 AC 69 ms
68,992 KB
testcase_14 AC 63 ms
67,712 KB
testcase_15 AC 105 ms
76,032 KB
testcase_16 AC 112 ms
76,160 KB
testcase_17 AC 124 ms
76,160 KB
testcase_18 AC 128 ms
76,160 KB
testcase_19 AC 120 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

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