結果
問題 | No.2438 Double Least Square |
ユーザー | kuroni |
提出日時 | 2023-08-18 22:40:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 368 bytes |
コンパイル時間 | 291 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 138,772 KB |
最終ジャッジ日時 | 2024-11-28 08:44:53 |
合計ジャッジ時間 | 62,219 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 1,918 ms
67,232 KB |
testcase_02 | AC | 1,334 ms
68,152 KB |
testcase_03 | AC | 1,418 ms
67,484 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1,298 ms
67,488 KB |
testcase_06 | AC | 1,416 ms
67,620 KB |
testcase_07 | AC | 1,679 ms
67,768 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | AC | 1,842 ms
67,512 KB |
testcase_21 | AC | 1,932 ms
68,004 KB |
testcase_22 | AC | 1,871 ms
68,256 KB |
testcase_23 | AC | 1,879 ms
68,024 KB |
testcase_24 | AC | 1,859 ms
67,508 KB |
testcase_25 | AC | 1,829 ms
68,024 KB |
testcase_26 | AC | 1,858 ms
68,272 KB |
testcase_27 | AC | 1,827 ms
67,476 KB |
testcase_28 | AC | 1,888 ms
68,020 KB |
testcase_29 | AC | 1,855 ms
67,496 KB |
testcase_30 | AC | 1,478 ms
67,488 KB |
testcase_31 | AC | 1,498 ms
67,636 KB |
testcase_32 | AC | 1,692 ms
138,772 KB |
ソースコード
from scipy.optimize import minimize from math import sqrt 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='Nelder-Mead').fun)