結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-23 20:32:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,828 KB
最終ジャッジ日時 2024-07-04 07:18:24
合計ジャッジ時間 21,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 495 ms
40,352 KB
testcase_19 AC 507 ms
39,648 KB
testcase_20 AC 240 ms
26,956 KB
testcase_21 AC 55 ms
13,184 KB
testcase_22 AC 264 ms
28,564 KB
testcase_23 AC 46 ms
12,288 KB
testcase_24 AC 379 ms
34,092 KB
testcase_25 AC 257 ms
27,508 KB
testcase_26 AC 94 ms
16,772 KB
testcase_27 AC 46 ms
12,416 KB
testcase_28 AC 513 ms
41,668 KB
testcase_29 AC 532 ms
41,704 KB
testcase_30 AC 528 ms
41,692 KB
testcase_31 AC 523 ms
41,828 KB
testcase_32 AC 523 ms
41,676 KB
testcase_33 AC 546 ms
41,804 KB
testcase_34 AC 529 ms
41,676 KB
testcase_35 AC 529 ms
41,684 KB
testcase_36 AC 512 ms
41,796 KB
testcase_37 AC 515 ms
41,804 KB
testcase_38 AC 516 ms
41,676 KB
testcase_39 AC 527 ms
41,676 KB
testcase_40 AC 537 ms
41,800 KB
testcase_41 AC 527 ms
41,792 KB
testcase_42 AC 534 ms
41,672 KB
testcase_43 AC 28 ms
10,752 KB
testcase_44 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

m = (sum(B) + 1)//2
AB = sorted(zip(A, B))

for a, b in AB:
    m -= b
    if m <= 0:
        i = a
        break

ans = sum(b * abs(i - a) for a, b in AB)
print(i, ans)
0