結果

問題 No.2438 Double Least Square
ユーザー kuronikuroni
提出日時 2023-08-18 23:02:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 349 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 122,736 KB
最終ジャッジ日時 2024-11-28 09:38:13
合計ジャッジ時間 59,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,504 ms
69,924 KB
testcase_02 AC 1,485 ms
69,536 KB
testcase_03 AC 1,368 ms
69,804 KB
testcase_04 WA -
testcase_05 AC 1,365 ms
68,104 KB
testcase_06 AC 1,365 ms
68,376 KB
testcase_07 AC 1,393 ms
67,880 KB
testcase_08 AC 1,373 ms
69,804 KB
testcase_09 AC 1,394 ms
68,144 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1,766 ms
67,512 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,764 ms
68,120 KB
testcase_25 AC 1,731 ms
70,044 KB
testcase_26 AC 1,747 ms
67,980 KB
testcase_27 AC 1,929 ms
69,540 KB
testcase_28 TLE -
testcase_29 WA -
testcase_30 AC 1,392 ms
69,792 KB
testcase_31 AC 1,382 ms
68,392 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.optimize import minimize

n = int(input())
h = int(input())
points = [tuple(map(int, input().split())) for i in range(n)]

def f(params):
    a1, a2 = params
    ret = 0
    for x, y in points:
        ret += min((y - (a1 * x + h)) ** 2, (y - a2 * x) ** 2)
    return ret

print(minimize(f, (0, 0), args=(), method='BFGS', tol=1e-9).fun)
0