結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー uni_pythonuni_python
提出日時 2020-10-10 11:49:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 126,844 KB
最終ジャッジ日時 2024-07-20 15:53:30
合計ジャッジ時間 26,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 44 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 42 ms
51,712 KB
testcase_10 AC 42 ms
51,840 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 42 ms
51,968 KB
testcase_14 AC 42 ms
51,840 KB
testcase_15 AC 42 ms
52,352 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 AC 669 ms
126,844 KB
testcase_19 AC 639 ms
119,844 KB
testcase_20 AC 365 ms
101,504 KB
testcase_21 AC 94 ms
75,904 KB
testcase_22 AC 406 ms
102,144 KB
testcase_23 AC 86 ms
76,544 KB
testcase_24 AC 536 ms
117,912 KB
testcase_25 AC 377 ms
102,400 KB
testcase_26 AC 164 ms
86,400 KB
testcase_27 AC 87 ms
76,288 KB
testcase_28 AC 690 ms
126,516 KB
testcase_29 AC 699 ms
126,088 KB
testcase_30 AC 698 ms
126,136 KB
testcase_31 AC 695 ms
126,220 KB
testcase_32 AC 700 ms
126,768 KB
testcase_33 AC 689 ms
126,124 KB
testcase_34 AC 700 ms
126,260 KB
testcase_35 AC 703 ms
126,252 KB
testcase_36 AC 697 ms
126,344 KB
testcase_37 AC 696 ms
126,284 KB
testcase_38 AC 694 ms
126,768 KB
testcase_39 AC 702 ms
126,380 KB
testcase_40 AC 688 ms
126,132 KB
testcase_41 AC 702 ms
126,260 KB
testcase_42 AC 698 ms
126,256 KB
testcase_43 AC 39 ms
51,812 KB
testcase_44 AC 41 ms
52,096 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():
    import bisect
    
    N=I()
    A=LI()
    B=LI()
    A,B = zip(*sorted(zip(A, B)))
    
    def calc(x):
        temp=0
        for i in range(N):
            temp+=B[i]*abs(x-A[i])
        return temp
    
    SB=sum(B)
    num=(SB+1)//2

    cnt=0
    i=-1
    while cnt<num:
        # print(i,cnt,num)
        i+=1
        cnt+=B[i]
    print(A[i],calc(A[i]))

main()
0