結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー taiga000629taiga000629
提出日時 2020-10-09 23:36:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 170,492 KB
最終ジャッジ日時 2024-07-20 14:29:04
合計ジャッジ時間 15,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
75,264 KB
testcase_01 AC 57 ms
75,520 KB
testcase_02 AC 54 ms
74,880 KB
testcase_03 AC 53 ms
74,880 KB
testcase_04 AC 52 ms
75,136 KB
testcase_05 AC 59 ms
75,776 KB
testcase_06 AC 55 ms
75,264 KB
testcase_07 AC 53 ms
75,136 KB
testcase_08 AC 52 ms
75,136 KB
testcase_09 AC 52 ms
75,264 KB
testcase_10 AC 54 ms
75,008 KB
testcase_11 AC 54 ms
75,136 KB
testcase_12 AC 53 ms
75,392 KB
testcase_13 AC 52 ms
75,264 KB
testcase_14 AC 54 ms
75,136 KB
testcase_15 AC 53 ms
75,136 KB
testcase_16 AC 53 ms
75,264 KB
testcase_17 AC 53 ms
75,392 KB
testcase_18 AC 212 ms
165,948 KB
testcase_19 AC 220 ms
162,028 KB
testcase_20 AC 158 ms
128,928 KB
testcase_21 AC 78 ms
94,720 KB
testcase_22 AC 158 ms
132,028 KB
testcase_23 AC 76 ms
92,416 KB
testcase_24 AC 183 ms
147,844 KB
testcase_25 AC 155 ms
130,752 KB
testcase_26 AC 96 ms
109,056 KB
testcase_27 AC 77 ms
92,160 KB
testcase_28 AC 221 ms
169,576 KB
testcase_29 AC 224 ms
170,188 KB
testcase_30 AC 233 ms
169,740 KB
testcase_31 AC 220 ms
169,160 KB
testcase_32 AC 221 ms
170,088 KB
testcase_33 AC 218 ms
169,712 KB
testcase_34 AC 227 ms
170,492 KB
testcase_35 AC 226 ms
170,084 KB
testcase_36 AC 219 ms
170,308 KB
testcase_37 AC 217 ms
170,300 KB
testcase_38 AC 223 ms
170,344 KB
testcase_39 AC 224 ms
169,460 KB
testcase_40 AC 220 ms
170,096 KB
testcase_41 AC 223 ms
169,844 KB
testcase_42 AC 225 ms
169,960 KB
testcase_43 AC 54 ms
75,008 KB
testcase_44 AC 55 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ans=[0]*(3000000)
sumb=sum(b)
A=[a[i] for i in range(n)]
def f(x):
    global n
    res=0
    for i in range(n):
        res+=b[i]*abs(x-A[i])
    return res

for i in range(n):
    ans[a[i]]+=b[i]
a.sort()
a=list(set(a))
num=0
for x in a:
    num+=ans[x]
    if num*2>=sumb:
        print(x,f(x))
        exit()
0