結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー KazunKazun
提出日時 2020-05-31 18:13:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2024-11-17 22:31:17
合計ジャッジ時間 1,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,412 KB
testcase_01 AC 31 ms
53,296 KB
testcase_02 AC 31 ms
52,528 KB
testcase_03 AC 31 ms
52,756 KB
testcase_04 AC 31 ms
52,572 KB
testcase_05 AC 30 ms
52,648 KB
testcase_06 AC 31 ms
52,352 KB
testcase_07 AC 30 ms
53,140 KB
testcase_08 AC 30 ms
52,772 KB
testcase_09 AC 31 ms
52,584 KB
testcase_10 AC 30 ms
53,160 KB
testcase_11 AC 33 ms
53,200 KB
testcase_12 AC 31 ms
52,300 KB
testcase_13 AC 30 ms
53,600 KB
testcase_14 AC 31 ms
52,368 KB
testcase_15 AC 31 ms
52,208 KB
testcase_16 AC 32 ms
52,740 KB
testcase_17 AC 31 ms
53,656 KB
testcase_18 AC 30 ms
52,212 KB
testcase_19 AC 30 ms
53,256 KB
testcase_20 AC 31 ms
54,012 KB
testcase_21 AC 30 ms
51,940 KB
testcase_22 AC 31 ms
53,684 KB
testcase_23 AC 31 ms
53,384 KB
testcase_24 AC 31 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Vector2():
    def __init__(self,x=0,y=0):
        self.x=x
        self.y=y

    def __neg__(self):
        return Vector2(-self.x,-self.y)
    
    def __add__(self,other):
        v=Vector2()
        v.x=self.x+other.x
        v.y=self.y+other.y
        return v

    def __sub__(self,other):
        return self+(-other)

    def inner(u,v):
        return u.x*v.x+u.y*v.y

    def __str__(self):
        return "{} {}".format(self.x,self.y)

X=[0,0,0]
Y=[0,0,0]
X[0],Y[0],X[1],Y[1],X[2],Y[2]=map(int,input().split())

V=[]
for k in range(3):
    V.append(Vector2(X[k],Y[k]))

f=0
for i in range(3):
    j=(i+1)%3
    k=(i-1)%3

    u,v,w=V[i],V[j],V[k]
    
    if (f==0) and ((v-u).inner(v-u)==(w-u).inner(w-u)) and (v-u).inner(w-u)==0:
        f=1
        print(-u+v+w)

if f==0:
    print(-1)
0