結果

問題 No.1279 Array Battle
ユーザー lloyzlloyz
提出日時 2022-01-30 01:27:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2025-01-03 05:36:18
合計ジャッジ時間 2,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

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

max_n = 0
ans = 0
for P in permutations(range(n)):
    res = 0
    for i in range(n):
        if A[P[i]] >= B[i]:
            res += A[P[i]] - B[i]
    if res > max_n:
        max_n = res
        ans = 1
    elif res == max_n:
        ans += 1
print(ans)
0