結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー kohei2019kohei2019
提出日時 2022-07-19 21:39:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 109,492 KB
最終ジャッジ日時 2024-07-02 01:32:02
合計ジャッジ時間 19,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 46 ms
58,496 KB
testcase_09 AC 46 ms
58,240 KB
testcase_10 AC 44 ms
57,600 KB
testcase_11 AC 44 ms
57,216 KB
testcase_12 AC 46 ms
57,856 KB
testcase_13 AC 45 ms
57,600 KB
testcase_14 AC 46 ms
58,496 KB
testcase_15 AC 46 ms
58,240 KB
testcase_16 AC 46 ms
58,496 KB
testcase_17 AC 46 ms
58,368 KB
testcase_18 AC 290 ms
108,728 KB
testcase_19 AC 268 ms
104,752 KB
testcase_20 AC 181 ms
103,040 KB
testcase_21 AC 64 ms
67,200 KB
testcase_22 AC 192 ms
103,936 KB
testcase_23 AC 58 ms
65,496 KB
testcase_24 AC 240 ms
103,552 KB
testcase_25 AC 190 ms
103,808 KB
testcase_26 AC 93 ms
77,516 KB
testcase_27 AC 64 ms
65,280 KB
testcase_28 AC 298 ms
109,040 KB
testcase_29 AC 287 ms
109,124 KB
testcase_30 AC 295 ms
108,788 KB
testcase_31 AC 300 ms
109,252 KB
testcase_32 AC 287 ms
109,032 KB
testcase_33 AC 289 ms
109,160 KB
testcase_34 AC 295 ms
108,964 KB
testcase_35 AC 296 ms
108,768 KB
testcase_36 AC 296 ms
108,876 KB
testcase_37 AC 293 ms
109,492 KB
testcase_38 AC 290 ms
109,036 KB
testcase_39 AC 296 ms
108,644 KB
testcase_40 AC 294 ms
109,032 KB
testcase_41 AC 297 ms
108,784 KB
testcase_42 AC 295 ms
109,036 KB
testcase_43 AC 37 ms
51,968 KB
testcase_44 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = list(map(int,input().split()))
lsB = list(map(int,input().split()))

def func(arg):
    a = 0
    for i in range(N):
        a += lsB[i] * abs(arg-lsA[i])
    return a

def sanbunntan(l,r):
    while l + 2 < r:
        c1 = l+(r-l)//3
        c2 = r-(r-l)//3
        if func(c1)<func(c2):
            r = c2
        else:
            l = c1
    val = sorted([(func(i),i) for i in range(l,r+1)])[0][1]
    return val

ans = sanbunntan(-10**6, 10**6+1)
fans = func(ans)
print(ans,fans)
0