結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
51,840 KB
testcase_11 WA -
testcase_12 AC 42 ms
57,344 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 41 ms
58,112 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 209 ms
104,812 KB
testcase_20 AC 143 ms
102,784 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 146 ms
103,840 KB
testcase_26 WA -
testcase_27 AC 56 ms
66,432 KB
testcase_28 AC 233 ms
109,448 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 221 ms
109,052 KB
testcase_33 AC 221 ms
109,184 KB
testcase_34 AC 229 ms
109,128 KB
testcase_35 AC 224 ms
109,036 KB
testcase_36 WA -
testcase_37 AC 228 ms
109,300 KB
testcase_38 AC 224 ms
109,188 KB
testcase_39 AC 226 ms
108,800 KB
testcase_40 AC 227 ms
109,432 KB
testcase_41 AC 222 ms
108,872 KB
testcase_42 WA -
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 39 ms
51,840 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()))

From,To=0,10**6
while(To-From>1):
    mid=(From+To)//2
    if point(mid)-point(mid-1)<0:
        From=mid
    else:
        To=mid
print(From,point(From))
0