結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tikitaka1201tikitaka1201
提出日時 2020-10-16 10:42:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 706 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 150,440 KB
最終ジャッジ日時 2024-07-20 20:24:14
合計ジャッジ時間 26,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 AC 666 ms
133,536 KB
testcase_19 AC 623 ms
127,232 KB
testcase_20 AC 352 ms
103,308 KB
testcase_21 AC 83 ms
76,544 KB
testcase_22 AC 385 ms
105,616 KB
testcase_23 AC 80 ms
76,212 KB
testcase_24 AC 511 ms
119,768 KB
testcase_25 AC 375 ms
104,572 KB
testcase_26 AC 153 ms
88,612 KB
testcase_27 AC 83 ms
76,160 KB
testcase_28 AC 693 ms
150,440 KB
testcase_29 AC 688 ms
148,716 KB
testcase_30 AC 688 ms
150,000 KB
testcase_31 AC 689 ms
149,056 KB
testcase_32 AC 689 ms
150,072 KB
testcase_33 AC 679 ms
150,248 KB
testcase_34 AC 688 ms
149,748 KB
testcase_35 AC 696 ms
149,748 KB
testcase_36 AC 685 ms
148,920 KB
testcase_37 AC 684 ms
149,872 KB
testcase_38 AC 684 ms
149,940 KB
testcase_39 AC 706 ms
150,124 KB
testcase_40 AC 700 ms
149,748 KB
testcase_41 AC 692 ms
149,736 KB
testcase_42 AC 692 ms
149,996 KB
testcase_43 AC 38 ms
51,840 KB
testcase_44 AC 42 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
*a,=map(int,input().split())
*b,=map(int,input().split())
sumb=sum(b)
l=[]
for i in range(n):
    l.append((a[i],b[i]))
l=sorted(l)
tmp=0
for i in range(n):
    tmp+=l[i][1]
    if tmp>=(sumb+1)//2:
        ind=i
        break

ai=l[ind][0]
ans=0
for i in range(n):
    ans+=b[i]*abs(ai-a[i])

print(ai,ans)
0