結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-17 15:19:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 652 ms
40,288 KB
testcase_19 AC 637 ms
39,384 KB
testcase_20 AC 340 ms
26,824 KB
testcase_21 AC 63 ms
12,984 KB
testcase_22 AC 371 ms
28,332 KB
testcase_23 AC 53 ms
12,288 KB
testcase_24 AC 510 ms
34,100 KB
testcase_25 AC 358 ms
27,992 KB
testcase_26 AC 125 ms
16,784 KB
testcase_27 AC 56 ms
12,416 KB
testcase_28 AC 683 ms
41,088 KB
testcase_29 AC 684 ms
41,812 KB
testcase_30 AC 678 ms
41,700 KB
testcase_31 AC 691 ms
41,960 KB
testcase_32 AC 698 ms
41,684 KB
testcase_33 AC 698 ms
41,820 KB
testcase_34 AC 691 ms
41,092 KB
testcase_35 AC 693 ms
41,712 KB
testcase_36 AC 703 ms
41,816 KB
testcase_37 AC 685 ms
41,816 KB
testcase_38 AC 710 ms
41,096 KB
testcase_39 AC 699 ms
41,684 KB
testcase_40 AC 683 ms
41,816 KB
testcase_41 AC 702 ms
41,808 KB
testcase_42 AC 679 ms
41,820 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 31 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

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