結果
| 問題 | No.1279 Array Battle |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-06 23:24:31 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 111 ms / 2,000 ms |
| + 933µs | |
| コード長 | 369 bytes |
| 記録 | |
| コンパイル時間 | 260 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 85,040 KB |
| 最終ジャッジ日時 | 2026-08-23 07:57:21 |
| 合計ジャッジ時間 | 3,626 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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])