結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー pluto77pluto77
提出日時 2022-02-12 15:35:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-06-28 17:44:40
合計ジャッジ時間 20,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 438 ms
40,040 KB
testcase_19 AC 411 ms
39,676 KB
testcase_20 AC 217 ms
26,932 KB
testcase_21 AC 50 ms
13,056 KB
testcase_22 AC 236 ms
28,560 KB
testcase_23 AC 42 ms
12,288 KB
testcase_24 AC 328 ms
34,220 KB
testcase_25 AC 226 ms
27,872 KB
testcase_26 AC 88 ms
16,788 KB
testcase_27 AC 45 ms
12,544 KB
testcase_28 AC 458 ms
41,792 KB
testcase_29 AC 464 ms
41,804 KB
testcase_30 AC 468 ms
41,684 KB
testcase_31 AC 446 ms
41,680 KB
testcase_32 AC 436 ms
41,676 KB
testcase_33 AC 456 ms
41,136 KB
testcase_34 AC 454 ms
41,680 KB
testcase_35 AC 467 ms
41,132 KB
testcase_36 AC 444 ms
41,680 KB
testcase_37 AC 461 ms
41,264 KB
testcase_38 AC 440 ms
41,696 KB
testcase_39 AC 452 ms
41,264 KB
testcase_40 AC 454 ms
41,260 KB
testcase_41 AC 425 ms
41,800 KB
testcase_42 AC 478 ms
41,136 KB
testcase_43 AC 26 ms
10,752 KB
testcase_44 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1251
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
s=sum(b)
c=[(a[i],b[i]) for i in range(n)]
c.sort()
mid=(s+1)//2
t=0
for i in range(n):
 t+=c[i][1]
 if t>=mid:
  x=c[i][0]
  y=sum(b*abs(a-x) for a,b in c)
  print(x,y)
  exit()
0