結果

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

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = [(a[i], b[i]) for i in range(n)]
c.sort()
s = sum(b)
idx = n
t = 0
for i in range(n):
    t += c[i][1]
    if t >= s - t:
        idx = i
        break
x = c[idx][0]
ans = 0
for i in range(n):
    ans += c[i][1] * abs(x - c[i][0])
print(c[idx][0], ans)
0