結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー ytftytft
提出日時 2022-11-06 03:05:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 548 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-07-19 19:15:42
合計ジャッジ時間 14,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
44,336 KB
testcase_01 AC 524 ms
44,328 KB
testcase_02 AC 518 ms
44,584 KB
testcase_03 AC 527 ms
44,068 KB
testcase_04 AC 527 ms
43,944 KB
testcase_05 AC 528 ms
44,068 KB
testcase_06 AC 524 ms
44,296 KB
testcase_07 AC 521 ms
44,448 KB
testcase_08 AC 528 ms
44,068 KB
testcase_09 AC 529 ms
44,332 KB
testcase_10 AC 528 ms
44,200 KB
testcase_11 AC 530 ms
43,944 KB
testcase_12 AC 521 ms
44,072 KB
testcase_13 AC 519 ms
44,196 KB
testcase_14 AC 526 ms
44,068 KB
testcase_15 AC 532 ms
44,200 KB
testcase_16 AC 524 ms
44,328 KB
testcase_17 AC 532 ms
44,328 KB
testcase_18 AC 525 ms
44,068 KB
testcase_19 AC 548 ms
43,936 KB
testcase_20 AC 522 ms
43,936 KB
testcase_21 AC 526 ms
44,204 KB
testcase_22 AC 524 ms
44,068 KB
testcase_23 AC 525 ms
44,332 KB
testcase_24 AC 527 ms
44,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,numpy as np,itertools
input=lambda:sys.stdin.readline().rstrip()
temp=list(map(int,input().split()))
points=[np.array(temp[i:i+2]) for i in range(0,6,2)]
n=lambda x:np.linalg.norm(x,ord=2)
for i in itertools.permutations(points,3):
	if np.dot(i[0]-i[1],i[0]-i[2])!=0 or n(i[0]-i[1])!=n(i[0]-i[2]):
		continue
	print(*(i[1]+i[2]-i[0]))
	break
else:
	print(-1)
0