結果
| 問題 | No.1279 Array Battle |
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 2024-10-31 23:50:33 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 155 ms / 2,000 ms |
| コード長 | 271 bytes |
| 記録 | |
| コンパイル時間 | 246 ms |
| コンパイル使用メモリ | 85,316 KB |
| 実行使用メモリ | 81,164 KB |
| 最終ジャッジ日時 | 2026-05-06 00:39:21 |
| 合計ジャッジ時間 | 3,304 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
g=-1
c=0
from itertools import permutations
for p in permutations(list(range(n))):
ng=sum(max(a[p[i]]-b[i],0) for i in range(n))
if ng>g:
g=ng
c=1
elif ng==g:
c+=1
print(c)
sasa8uyauya