結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-17 15:19:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,960 KB
最終ジャッジ日時 2024-07-21 02:40:36
合計ジャッジ時間 26,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
s = sum(b)
l = [(a[i], b[i]) for i in range(n)]
l.sort()
cnt = 0
ind = float("inf")
for i in range(n):
    cnt += l[i][1]
    if cnt >= s - cnt:
        ind = i
        break
ans = 0
for i in range(n):
    ans += l[i][1] * abs(l[ind][0] - l[i][0])
print(l[ind][0], ans)
0