結果
| 問題 | No.1279 Array Battle | 
| コンテスト | |
| ユーザー |  sasa8uyauya | 
| 提出日時 | 2024-10-31 23:50:33 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 262 ms / 2,000 ms | 
| コード長 | 271 bytes | 
| コンパイル時間 | 578 ms | 
| コンパイル使用メモリ | 82,608 KB | 
| 実行使用メモリ | 76,480 KB | 
| 最終ジャッジ日時 | 2024-10-31 23:50:37 | 
| 合計ジャッジ時間 | 3,795 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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)
            
            
            
        