結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー proriboneproribone
提出日時 2020-10-09 22:12:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 109,372 KB
最終ジャッジ日時 2024-07-20 12:00:46
合計ジャッジ時間 16,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,672 KB
testcase_01 AC 38 ms
52,540 KB
testcase_02 AC 38 ms
52,276 KB
testcase_03 AC 38 ms
52,824 KB
testcase_04 AC 38 ms
51,948 KB
testcase_05 AC 37 ms
52,828 KB
testcase_06 AC 39 ms
52,468 KB
testcase_07 AC 39 ms
52,836 KB
testcase_08 AC 42 ms
58,596 KB
testcase_09 AC 43 ms
58,836 KB
testcase_10 AC 40 ms
58,716 KB
testcase_11 AC 40 ms
53,100 KB
testcase_12 AC 41 ms
58,268 KB
testcase_13 AC 41 ms
58,188 KB
testcase_14 AC 43 ms
58,484 KB
testcase_15 AC 42 ms
57,928 KB
testcase_16 AC 42 ms
58,524 KB
testcase_17 AC 41 ms
58,804 KB
testcase_18 AC 226 ms
108,768 KB
testcase_19 AC 211 ms
104,368 KB
testcase_20 AC 146 ms
103,268 KB
testcase_21 AC 58 ms
67,644 KB
testcase_22 AC 163 ms
104,132 KB
testcase_23 AC 56 ms
66,800 KB
testcase_24 AC 192 ms
103,336 KB
testcase_25 AC 150 ms
103,980 KB
testcase_26 AC 82 ms
78,232 KB
testcase_27 AC 57 ms
67,336 KB
testcase_28 AC 228 ms
109,100 KB
testcase_29 AC 243 ms
108,700 KB
testcase_30 AC 232 ms
109,372 KB
testcase_31 AC 231 ms
108,676 KB
testcase_32 AC 227 ms
108,844 KB
testcase_33 AC 239 ms
108,744 KB
testcase_34 AC 230 ms
109,252 KB
testcase_35 AC 231 ms
108,992 KB
testcase_36 AC 237 ms
108,964 KB
testcase_37 AC 237 ms
108,988 KB
testcase_38 AC 226 ms
108,748 KB
testcase_39 AC 229 ms
108,880 KB
testcase_40 AC 228 ms
108,740 KB
testcase_41 AC 231 ms
109,000 KB
testcase_42 AC 231 ms
108,884 KB
testcase_43 AC 39 ms
51,812 KB
testcase_44 AC 38 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def point(X):
    res=0
    for i in range(N):
        res+=B[i]*abs(X-A[i])
    return res

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

From,To=-10**8,10**8
while(To-From>1):
    mid=(From+To)//2
    if point(mid)-point(mid-1)<0:
        From=mid
    else:
        To=mid
print(From,point(From))
0