結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー hir355hir355
提出日時 2020-10-09 21:39:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 128,244 KB
最終ジャッジ日時 2024-07-20 09:58:01
合計ジャッジ時間 22,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 35 ms
51,328 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 36 ms
51,328 KB
testcase_05 AC 35 ms
51,456 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 34 ms
51,584 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 35 ms
51,840 KB
testcase_13 AC 37 ms
51,584 KB
testcase_14 AC 36 ms
51,712 KB
testcase_15 AC 34 ms
51,712 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 34 ms
51,968 KB
testcase_18 AC 564 ms
127,304 KB
testcase_19 AC 578 ms
121,072 KB
testcase_20 AC 319 ms
103,168 KB
testcase_21 AC 83 ms
76,544 KB
testcase_22 AC 348 ms
103,680 KB
testcase_23 AC 73 ms
75,904 KB
testcase_24 AC 457 ms
116,960 KB
testcase_25 AC 325 ms
103,808 KB
testcase_26 AC 144 ms
86,528 KB
testcase_27 AC 76 ms
76,032 KB
testcase_28 AC 611 ms
127,892 KB
testcase_29 AC 598 ms
127,688 KB
testcase_30 AC 605 ms
127,736 KB
testcase_31 AC 608 ms
127,824 KB
testcase_32 AC 595 ms
127,992 KB
testcase_33 AC 600 ms
127,996 KB
testcase_34 AC 590 ms
127,744 KB
testcase_35 AC 605 ms
127,992 KB
testcase_36 AC 603 ms
127,956 KB
testcase_37 AC 597 ms
127,740 KB
testcase_38 AC 592 ms
127,732 KB
testcase_39 AC 626 ms
128,000 KB
testcase_40 AC 603 ms
128,244 KB
testcase_41 AC 614 ms
127,604 KB
testcase_42 AC 598 ms
127,484 KB
testcase_43 AC 39 ms
51,456 KB
testcase_44 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a, b = zip(*sorted(zip(a, b)))
s = sum(b)
t = 0
for i in range(n):
    t += b[i]
    if t >= s // 2 + 1:
        res = a[i]
        break
ans = 0
for i in range(n):
    ans += abs(a[i] - res) * b[i]
print(res, ans)
0