結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー hiragnhiragn
提出日時 2022-10-26 09:37:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 606 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,800 KB
最終ジャッジ日時 2024-07-04 01:14:10
合計ジャッジ時間 15,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
43,416 KB
testcase_01 AC 495 ms
43,524 KB
testcase_02 AC 497 ms
43,544 KB
testcase_03 AC 501 ms
43,800 KB
testcase_04 AC 493 ms
43,800 KB
testcase_05 AC 496 ms
43,800 KB
testcase_06 AC 498 ms
43,800 KB
testcase_07 AC 501 ms
43,416 KB
testcase_08 AC 497 ms
43,420 KB
testcase_09 AC 502 ms
43,412 KB
testcase_10 AC 496 ms
43,548 KB
testcase_11 AC 493 ms
43,780 KB
testcase_12 AC 487 ms
43,604 KB
testcase_13 AC 496 ms
43,672 KB
testcase_14 AC 486 ms
43,800 KB
testcase_15 AC 497 ms
43,712 KB
testcase_16 AC 499 ms
43,420 KB
testcase_17 AC 523 ms
43,528 KB
testcase_18 AC 606 ms
43,520 KB
testcase_19 AC 492 ms
43,416 KB
testcase_20 AC 487 ms
43,420 KB
testcase_21 AC 487 ms
43,424 KB
testcase_22 AC 490 ms
43,528 KB
testcase_23 AC 489 ms
43,676 KB
testcase_24 AC 498 ms
43,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import numpy as np


def main():
    points = np.array_split(list(map(int, input().split())), 3)
    for a, b, c in itertools.permutations(points):
        if np.linalg.norm(a - b) == np.linalg.norm(c - b) and np.dot(a - b, c - b) == 0:
            print(*(a + c - b))
            exit()
    print(-1)


if __name__ == "__main__":
    main()
0