結果
| 問題 | No.1279 Array Battle |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-30 01:28:06 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 1,534 ms / 2,000 ms |
| コード長 | 400 bytes |
| コンパイル時間 | 500 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 10,368 KB |
| 最終ジャッジ日時 | 2025-01-03 05:37:15 |
| 合計ジャッジ時間 | 9,391 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
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)