結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー uni_pythonuni_python
提出日時 2020-10-10 11:43:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,730 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,128 KB
最終ジャッジ日時 2024-07-20 15:52:58
合計ジャッジ時間 43,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,992 KB
testcase_01 AC 41 ms
58,496 KB
testcase_02 AC 42 ms
60,032 KB
testcase_03 AC 42 ms
59,024 KB
testcase_04 AC 43 ms
59,648 KB
testcase_05 AC 43 ms
60,288 KB
testcase_06 AC 42 ms
59,648 KB
testcase_07 AC 44 ms
59,636 KB
testcase_08 AC 43 ms
59,392 KB
testcase_09 AC 43 ms
59,648 KB
testcase_10 AC 43 ms
59,904 KB
testcase_11 AC 41 ms
59,136 KB
testcase_12 AC 44 ms
59,904 KB
testcase_13 AC 44 ms
59,392 KB
testcase_14 AC 44 ms
59,008 KB
testcase_15 AC 44 ms
59,392 KB
testcase_16 AC 43 ms
59,520 KB
testcase_17 AC 44 ms
59,520 KB
testcase_18 AC 1,500 ms
107,260 KB
testcase_19 AC 1,559 ms
103,260 KB
testcase_20 AC 831 ms
102,144 KB
testcase_21 AC 164 ms
66,176 KB
testcase_22 AC 993 ms
102,272 KB
testcase_23 AC 123 ms
64,768 KB
testcase_24 AC 1,164 ms
101,248 KB
testcase_25 AC 951 ms
102,528 KB
testcase_26 AC 341 ms
76,672 KB
testcase_27 AC 127 ms
65,152 KB
testcase_28 AC 1,541 ms
107,744 KB
testcase_29 AC 1,730 ms
107,444 KB
testcase_30 AC 1,544 ms
107,492 KB
testcase_31 AC 1,570 ms
107,572 KB
testcase_32 AC 1,672 ms
107,860 KB
testcase_33 AC 1,647 ms
107,608 KB
testcase_34 AC 1,542 ms
107,360 KB
testcase_35 AC 1,544 ms
107,356 KB
testcase_36 AC 1,553 ms
107,828 KB
testcase_37 AC 1,702 ms
108,128 KB
testcase_38 AC 1,689 ms
107,872 KB
testcase_39 AC 1,561 ms
107,368 KB
testcase_40 AC 1,558 ms
107,352 KB
testcase_41 AC 1,585 ms
107,604 KB
testcase_42 AC 1,567 ms
107,740 KB
testcase_43 AC 42 ms
56,960 KB
testcase_44 AC 47 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    
    N=I()
    A=LI()
    B=LI()
    
    def calc(x):
        res=0
        for i in range(N):
            res+=B[i]*abs(x-A[i])
        return res
        
    
    M=10**6+5
    left=-M
    right=M
    
    for i in range(300):
        c1=(2*left+right)//3
        c2=(left+2*right)//3
        
        if calc(c1)<calc(c2):
            right=c2
        else:
            left=c1
            
            
    aaa=int((right+left)//2)
    ansx=aaa
    ans=calc(aaa)
    
    # for i in range(20):
    #     ii=i-10
    #     x=aaa+0.5*ii
    #     temp=calc(x)
    #     if temp<ans:
    #         ans=temp
    #         ansx=x
            
    print(ansx,int(ans))
    
        
    


main()
0