結果
| 問題 |
No.1279 Array Battle
|
| コンテスト | |
| ユーザー |
nehan_der_thal
|
| 提出日時 | 2020-11-06 22:22:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 115 ms / 2,000 ms |
| コード長 | 368 bytes |
| コンパイル時間 | 356 ms |
| コンパイル使用メモリ | 82,788 KB |
| 実行使用メモリ | 76,736 KB |
| 最終ジャッジ日時 | 2024-07-22 13:05:53 |
| 合計ジャッジ時間 | 2,264 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
N, = map(int, input().split())
from itertools import permutations
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
from collections import defaultdict
D = defaultdict(int)
mx = 0
for x in permutations(X, N):
R = 0
for i in range(N):
a,b=x[i],Y[i]
if a>b:
R+=a-b
D[R] += 1
mx = max(R, mx)
print(D[mx])
nehan_der_thal