結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー 12354865271235486527
提出日時 2020-01-14 21:17:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 508 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,860 KB
最終ジャッジ日時 2024-06-07 23:23:52
合計ジャッジ時間 13,748 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 479 ms
43,608 KB
testcase_01 AC 487 ms
43,860 KB
testcase_02 AC 484 ms
43,608 KB
testcase_03 AC 479 ms
43,604 KB
testcase_04 AC 481 ms
43,620 KB
testcase_05 AC 505 ms
43,732 KB
testcase_06 AC 498 ms
43,740 KB
testcase_07 AC 489 ms
43,604 KB
testcase_08 AC 489 ms
43,616 KB
testcase_09 AC 488 ms
43,496 KB
testcase_10 AC 488 ms
43,600 KB
testcase_11 AC 487 ms
43,480 KB
testcase_12 AC 472 ms
43,604 KB
testcase_13 AC 477 ms
43,604 KB
testcase_14 AC 485 ms
43,596 KB
testcase_15 AC 484 ms
43,364 KB
testcase_16 AC 494 ms
43,736 KB
testcase_17 AC 487 ms
43,736 KB
testcase_18 AC 485 ms
43,600 KB
testcase_19 AC 485 ms
43,604 KB
testcase_20 AC 480 ms
43,748 KB
testcase_21 AC 480 ms
43,860 KB
testcase_22 AC 501 ms
43,860 KB
testcase_23 AC 508 ms
43,608 KB
testcase_24 AC 505 ms
43,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

X1, Y1, X2, Y2, X3, Y3 = map(int, input().split())
a = np.array([X1, Y1])
b = np.array([X2, Y2])
c = np.array([X3, Y3])
ab = np.linalg.norm(a - b)
bc = np.linalg.norm(b - c)
ca = np.linalg.norm(c - a)
ans = (-1, )
if ab == ca:
    if np.inner(b - a, c - a) == 0:
        ans = b + c - a
elif ab == bc:
    if np.inner(a - b, c - b) == 0:
        ans = a + c - b
elif bc == ca:
    if np.inner(c - a, c - b) == 0:
        ans = a + b - c
print(*ans)
0