結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-30 04:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,952 KB
最終ジャッジ日時 2024-09-30 04:42:07
合計ジャッジ時間 21,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 32 ms
51,584 KB
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 33 ms
51,840 KB
testcase_11 AC 34 ms
51,968 KB
testcase_12 AC 35 ms
51,840 KB
testcase_13 AC 32 ms
51,968 KB
testcase_14 AC 33 ms
52,096 KB
testcase_15 AC 32 ms
51,968 KB
testcase_16 AC 33 ms
51,968 KB
testcase_17 AC 33 ms
52,352 KB
testcase_18 AC 556 ms
115,408 KB
testcase_19 AC 503 ms
110,716 KB
testcase_20 AC 294 ms
103,040 KB
testcase_21 AC 74 ms
76,740 KB
testcase_22 AC 316 ms
104,192 KB
testcase_23 AC 78 ms
76,288 KB
testcase_24 AC 435 ms
107,872 KB
testcase_25 AC 313 ms
103,424 KB
testcase_26 AC 133 ms
84,864 KB
testcase_27 AC 67 ms
76,672 KB
testcase_28 AC 544 ms
115,836 KB
testcase_29 AC 555 ms
115,544 KB
testcase_30 AC 598 ms
115,588 KB
testcase_31 AC 576 ms
115,540 KB
testcase_32 AC 568 ms
115,952 KB
testcase_33 AC 553 ms
115,708 KB
testcase_34 AC 550 ms
115,840 KB
testcase_35 AC 540 ms
115,700 KB
testcase_36 AC 545 ms
115,796 KB
testcase_37 AC 551 ms
115,544 KB
testcase_38 AC 566 ms
115,708 KB
testcase_39 AC 544 ms
115,460 KB
testcase_40 AC 577 ms
115,444 KB
testcase_41 AC 546 ms
115,460 KB
testcase_42 AC 553 ms
115,452 KB
testcase_43 AC 38 ms
51,584 KB
testcase_44 AC 32 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
f=[(a[i],b[i]) for i in range(n)]
f.sort()
B=sum(b)
c=0
for i in range(n):
	c+=f[i][1]
	if c>B//2:
		x=f[i][0]
		break
print(x,sum(b[i]*abs(x-a[i]) for i in range(n)))
0