結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tonyu0tonyu0
提出日時 2020-10-10 00:35:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,000 KB
最終ジャッジ日時 2024-07-20 15:01:03
合計ジャッジ時間 21,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 580 ms
40,628 KB
testcase_19 AC 519 ms
39,616 KB
testcase_20 AC 270 ms
26,712 KB
testcase_21 AC 57 ms
13,056 KB
testcase_22 AC 308 ms
29,552 KB
testcase_23 AC 53 ms
12,288 KB
testcase_24 AC 436 ms
34,176 KB
testcase_25 AC 269 ms
28,576 KB
testcase_26 AC 100 ms
16,776 KB
testcase_27 AC 49 ms
12,416 KB
testcase_28 AC 553 ms
41,792 KB
testcase_29 AC 530 ms
41,960 KB
testcase_30 AC 554 ms
41,948 KB
testcase_31 AC 540 ms
42,000 KB
testcase_32 AC 535 ms
41,948 KB
testcase_33 AC 559 ms
41,944 KB
testcase_34 AC 533 ms
41,792 KB
testcase_35 AC 527 ms
41,820 KB
testcase_36 AC 541 ms
41,948 KB
testcase_37 AC 499 ms
41,820 KB
testcase_38 AC 502 ms
41,684 KB
testcase_39 AC 510 ms
41,820 KB
testcase_40 AC 524 ms
41,836 KB
testcase_41 AC 527 ms
41,812 KB
testcase_42 AC 520 ms
41,944 KB
testcase_43 AC 27 ms
10,752 KB
testcase_44 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
s = sum(B)
ab = []
for i in range(n):
    ab.append((A[i], B[i]))
ab.sort()
# med番目が中央値
med = (s + 1) // 2
now = 0
for i in range(n):
    now += ab[i][1]
    if now >= med:
        x = ab[i][0]
        y = sum(b * abs(a - x) for a, b in ab)
        print(x, y)
        exit()
0