結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー NyaanNyaanNyaanNyaan
提出日時 2024-02-16 23:03:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 68,016 KB
最終ジャッジ日時 2024-09-28 21:39:16
合計ジャッジ時間 53,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,306 ms
67,500 KB
testcase_01 AC 1,324 ms
67,860 KB
testcase_02 AC 1,301 ms
67,868 KB
testcase_03 WA -
testcase_04 AC 1,308 ms
67,720 KB
testcase_05 WA -
testcase_06 AC 1,289 ms
67,744 KB
testcase_07 AC 1,318 ms
67,864 KB
testcase_08 AC 1,297 ms
68,000 KB
testcase_09 AC 1,312 ms
67,900 KB
testcase_10 AC 1,285 ms
67,852 KB
testcase_11 WA -
testcase_12 AC 1,281 ms
67,244 KB
testcase_13 AC 1,299 ms
67,752 KB
testcase_14 AC 1,296 ms
67,852 KB
testcase_15 AC 1,315 ms
67,612 KB
testcase_16 AC 1,303 ms
67,244 KB
testcase_17 AC 1,281 ms
67,712 KB
testcase_18 WA -
testcase_19 AC 1,282 ms
67,496 KB
testcase_20 AC 1,282 ms
67,224 KB
testcase_21 AC 1,299 ms
67,596 KB
testcase_22 WA -
testcase_23 AC 1,302 ms
68,004 KB
testcase_24 AC 1,280 ms
67,876 KB
testcase_25 AC 1,273 ms
67,856 KB
testcase_26 AC 1,289 ms
67,368 KB
testcase_27 WA -
testcase_28 AC 1,311 ms
68,004 KB
testcase_29 AC 1,346 ms
67,972 KB
testcase_30 AC 1,362 ms
67,860 KB
testcase_31 WA -
testcase_32 AC 1,367 ms
67,728 KB
testcase_33 WA -
testcase_34 AC 1,370 ms
67,856 KB
testcase_35 AC 1,380 ms
67,632 KB
testcase_36 AC 1,346 ms
67,784 KB
testcase_37 AC 1,407 ms
67,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import scipy

p = float(input())
ax, ay = map(float, input().split())
bx, by = map(float, input().split())
cx, cy = map(float, input().split())


def my_pow(x):
    return np.abs(x) ** p


def f(point):
    x, y = point
    # print(x, y)
    anorm = my_pow(ax - x) + my_pow(ay - y)
    bnorm = my_pow(bx - x) + my_pow(by - y)
    cnorm = my_pow(cx - x) + my_pow(cy - y)
    return max(anorm, bnorm, cnorm) - min(anorm, bnorm, cnorm)


ans = scipy.optimize.fmin(f, [-100000, 100000], disp=False, maxiter=500, ftol=1e-9)
print(*ans)
0