結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー yuusanlondonyuusanlondon
提出日時 2020-10-09 21:37:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 132,784 KB
最終ジャッジ日時 2024-07-20 09:51:20
合計ジャッジ時間 18,072 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 35 ms
51,712 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 34 ms
51,840 KB
testcase_14 AC 35 ms
51,968 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 35 ms
51,712 KB
testcase_18 AC 357 ms
132,784 KB
testcase_19 AC 337 ms
129,108 KB
testcase_20 AC 207 ms
103,168 KB
testcase_21 AC 72 ms
72,960 KB
testcase_22 AC 209 ms
103,936 KB
testcase_23 AC 66 ms
70,528 KB
testcase_24 AC 331 ms
131,880 KB
testcase_25 AC 209 ms
103,808 KB
testcase_26 AC 123 ms
90,880 KB
testcase_27 AC 67 ms
71,168 KB
testcase_28 AC 365 ms
130,908 KB
testcase_29 AC 368 ms
130,360 KB
testcase_30 AC 375 ms
130,784 KB
testcase_31 AC 364 ms
130,356 KB
testcase_32 AC 359 ms
130,520 KB
testcase_33 AC 377 ms
130,528 KB
testcase_34 AC 371 ms
130,528 KB
testcase_35 AC 371 ms
130,528 KB
testcase_36 AC 363 ms
130,492 KB
testcase_37 AC 366 ms
130,528 KB
testcase_38 AC 369 ms
130,532 KB
testcase_39 AC 370 ms
130,664 KB
testcase_40 AC 365 ms
130,896 KB
testcase_41 AC 362 ms
131,176 KB
testcase_42 AC 361 ms
130,912 KB
testcase_43 AC 38 ms
51,584 KB
testcase_44 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
nums=[]
for i in range(n):
  nums.append([a[i],b[i]])
nums=sorted(nums, key=lambda student: student[0])
bsum=sum(b)
curr=0
for i in range(n):
  curr+=nums[i][1]
  if curr*2>=bsum:
    point=i
    break
option1=point-1
option2=point
ans1=0
ans2=0
for i in range(n):
  ans1+=nums[i][1]*abs(nums[i][0]-nums[option1][0])
  ans2+=nums[i][1]*abs(nums[i][0]-nums[option2][0])
if ans1<ans2:
  print(nums[option1][0],ans1)
else:
  print(nums[option2][0],ans2)
  
0