結果
問題 |
No.1279 Array Battle
|
ユーザー |
|
提出日時 | 2020-11-06 23:24:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 123 ms / 2,000 ms |
コード長 | 369 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,416 KB |
実行使用メモリ | 76,416 KB |
最終ジャッジ日時 | 2024-07-22 13:45:25 |
合計ジャッジ時間 | 2,156 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
import itertools import collections n=int(input()) a=list(map(int,input().split())) b=list(map(int,input().split())) cnt=collections.defaultdict(int) for p in itertools.permutations(range(n)): point=0 for i in range(n): if a[p[i]]>b[i]: point+=a[p[i]]-b[i] cnt[point]+=1 points=list(cnt.keys()) maxpoint=max(points) print(cnt[maxpoint])