結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー proriboneproribone
提出日時 2020-10-09 21:39:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 109,940 KB
最終ジャッジ日時 2024-07-20 10:00:00
合計ジャッジ時間 16,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 43 ms
58,112 KB
testcase_03 AC 39 ms
57,984 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
57,984 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
57,984 KB
testcase_11 WA -
testcase_12 AC 39 ms
58,240 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
57,728 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 275 ms
109,380 KB
testcase_19 WA -
testcase_20 AC 182 ms
103,424 KB
testcase_21 AC 73 ms
67,968 KB
testcase_22 WA -
testcase_23 AC 60 ms
66,176 KB
testcase_24 WA -
testcase_25 AC 181 ms
104,064 KB
testcase_26 WA -
testcase_27 AC 59 ms
66,304 KB
testcase_28 WA -
testcase_29 AC 279 ms
109,512 KB
testcase_30 AC 291 ms
109,428 KB
testcase_31 AC 295 ms
109,644 KB
testcase_32 AC 285 ms
109,552 KB
testcase_33 WA -
testcase_34 AC 277 ms
109,436 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 286 ms
109,424 KB
testcase_39 AC 282 ms
109,564 KB
testcase_40 AC 285 ms
109,560 KB
testcase_41 AC 286 ms
109,476 KB
testcase_42 WA -
testcase_43 AC 35 ms
52,224 KB
testcase_44 AC 40 ms
57,984 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()))

l,r=-10**6,10**6

while(r-l>10**-9):
    c1,c2=(l*2+r)/3,(l+r*2)/3
    if point(c1)>=point(c2):
        l=c1
    else:
        r=c2

print(int(r),point(int(r)))
0