結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー sibasyunsibasyun
提出日時 2021-01-30 15:32:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,048 KB
最終ジャッジ日時 2024-06-28 03:02:08
合計ジャッジ時間 32,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 889 ms
43,312 KB
testcase_19 AC 840 ms
41,860 KB
testcase_20 AC 442 ms
28,632 KB
testcase_21 AC 68 ms
13,116 KB
testcase_22 AC 498 ms
30,112 KB
testcase_23 AC 56 ms
12,544 KB
testcase_24 AC 665 ms
36,620 KB
testcase_25 AC 481 ms
29,340 KB
testcase_26 AC 153 ms
17,428 KB
testcase_27 AC 59 ms
12,672 KB
testcase_28 AC 941 ms
45,008 KB
testcase_29 AC 934 ms
44,956 KB
testcase_30 AC 938 ms
45,012 KB
testcase_31 AC 936 ms
45,048 KB
testcase_32 AC 917 ms
44,888 KB
testcase_33 AC 937 ms
44,444 KB
testcase_34 AC 935 ms
44,892 KB
testcase_35 AC 925 ms
44,232 KB
testcase_36 AC 914 ms
45,048 KB
testcase_37 AC 925 ms
44,216 KB
testcase_38 AC 944 ms
45,020 KB
testcase_39 AC 936 ms
44,212 KB
testcase_40 AC 939 ms
44,232 KB
testcase_41 AC 951 ms
45,016 KB
testcase_42 AC 941 ms
44,468 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
AB = [[A[i], B[i]] for i in range(N)]
AB.sort()

Bsum = sum(B)

T = 0
for i in range(N):
    T = T + AB[i][1]
    if T >= (Bsum + 1) / 2:
        a = i
        break

A0 = AB[a][0]
Ans = 0
for i in range(N):
    Ans = Ans + AB[i][1] * abs(AB[i][0] - A0)

print(str(A0) + " " + str(Ans))
0