結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー raven7959raven7959
提出日時 2021-08-22 11:09:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 752 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 132,820 KB
最終ジャッジ日時 2024-11-06 07:25:31
合計ジャッジ時間 26,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,660 KB
testcase_01 AC 39 ms
53,040 KB
testcase_02 AC 39 ms
53,140 KB
testcase_03 AC 40 ms
52,916 KB
testcase_04 AC 39 ms
53,792 KB
testcase_05 AC 39 ms
53,616 KB
testcase_06 AC 39 ms
52,532 KB
testcase_07 AC 39 ms
52,128 KB
testcase_08 AC 39 ms
53,376 KB
testcase_09 AC 39 ms
53,208 KB
testcase_10 AC 39 ms
52,316 KB
testcase_11 AC 38 ms
52,888 KB
testcase_12 AC 39 ms
53,604 KB
testcase_13 AC 39 ms
53,172 KB
testcase_14 AC 39 ms
53,588 KB
testcase_15 AC 39 ms
53,316 KB
testcase_16 AC 41 ms
53,928 KB
testcase_17 AC 38 ms
53,340 KB
testcase_18 AC 688 ms
132,820 KB
testcase_19 AC 657 ms
129,792 KB
testcase_20 AC 359 ms
104,924 KB
testcase_21 AC 87 ms
77,936 KB
testcase_22 AC 400 ms
107,224 KB
testcase_23 AC 72 ms
74,244 KB
testcase_24 AC 567 ms
128,396 KB
testcase_25 AC 389 ms
105,860 KB
testcase_26 AC 156 ms
89,680 KB
testcase_27 AC 79 ms
77,616 KB
testcase_28 AC 751 ms
131,196 KB
testcase_29 AC 708 ms
130,512 KB
testcase_30 AC 715 ms
131,080 KB
testcase_31 AC 715 ms
130,512 KB
testcase_32 AC 714 ms
130,824 KB
testcase_33 AC 726 ms
130,828 KB
testcase_34 AC 742 ms
130,700 KB
testcase_35 AC 751 ms
130,688 KB
testcase_36 AC 728 ms
130,792 KB
testcase_37 AC 716 ms
130,784 KB
testcase_38 AC 734 ms
130,700 KB
testcase_39 AC 731 ms
130,828 KB
testcase_40 AC 723 ms
130,808 KB
testcase_41 AC 752 ms
130,544 KB
testcase_42 AC 726 ms
130,816 KB
testcase_43 AC 40 ms
53,060 KB
testcase_44 AC 39 ms
52,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from bisect import bisect_left
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
Q=[]
for i in range(N):
  Q.append([A[i],B[i]])
Q=sorted(Q)
QB=[Q[i][1] for i in range(N)]
BA=list(accumulate(QB))
num=(BA[-1]+1)//2
idx=bisect_left(BA,num)
ans=0
for i in range(N):
  ans+=Q[i][1]*abs(Q[idx][0]-Q[i][0])
print(Q[idx][0],ans)
0