結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー roarisroaris
提出日時 2020-11-15 10:52:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 407 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 108,988 KB
最終ジャッジ日時 2024-07-23 01:08:09
合計ジャッジ時間 60,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,376 KB
testcase_01 AC 37 ms
52,948 KB
testcase_02 AC 47 ms
61,548 KB
testcase_03 AC 44 ms
59,720 KB
testcase_04 AC 45 ms
60,640 KB
testcase_05 AC 45 ms
59,984 KB
testcase_06 AC 45 ms
61,648 KB
testcase_07 AC 46 ms
60,288 KB
testcase_08 AC 52 ms
64,980 KB
testcase_09 AC 48 ms
61,980 KB
testcase_10 AC 47 ms
61,528 KB
testcase_11 AC 49 ms
62,644 KB
testcase_12 AC 46 ms
61,284 KB
testcase_13 AC 49 ms
61,564 KB
testcase_14 AC 50 ms
63,780 KB
testcase_15 AC 52 ms
64,128 KB
testcase_16 AC 51 ms
64,260 KB
testcase_17 AC 52 ms
64,416 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,236 ms
102,040 KB
testcase_21 AC 242 ms
76,188 KB
testcase_22 AC 1,338 ms
102,520 KB
testcase_23 AC 195 ms
76,568 KB
testcase_24 AC 1,723 ms
103,420 KB
testcase_25 AC 1,292 ms
102,508 KB
testcase_26 AC 509 ms
83,280 KB
testcase_27 AC 197 ms
76,216 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 38 ms
53,384 KB
testcase_44 AC 47 ms
61,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def f(x):
    return sum(Bi*abs(x-Ai) for Ai, Bi in zip(A, B))

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
l, r = -10**18, 10**18

while r-l>=5:
    t1 = (2*l+r)//3
    t2 = (l+2*r)//3
    
    if f(t1)>f(t2):
        l = t1
    else:
        r = t2

v = [(f(x), x) for x in range(l, r+1)]
v.sort()
print(v[0][1], v[0][0])
0