結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー titiatitia
提出日時 2021-12-13 02:25:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 692 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,648 KB
最終ジャッジ日時 2024-07-21 16:06:03
合計ジャッジ時間 7,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
77,648 KB
testcase_01 AC 323 ms
77,440 KB
testcase_02 AC 199 ms
77,312 KB
testcase_03 AC 209 ms
77,184 KB
testcase_04 AC 308 ms
77,184 KB
testcase_05 AC 323 ms
76,928 KB
testcase_06 AC 312 ms
77,352 KB
testcase_07 AC 319 ms
77,312 KB
testcase_08 AC 325 ms
77,056 KB
testcase_09 AC 310 ms
77,184 KB
testcase_10 AC 312 ms
77,312 KB
testcase_11 AC 175 ms
77,440 KB
testcase_12 AC 315 ms
77,184 KB
testcase_13 AC 244 ms
77,312 KB
testcase_14 AC 205 ms
77,312 KB
testcase_15 AC 321 ms
77,440 KB
testcase_16 AC 205 ms
77,400 KB
testcase_17 AC 318 ms
77,184 KB
testcase_18 AC 176 ms
77,240 KB
testcase_19 AC 313 ms
77,260 KB
testcase_20 AC 200 ms
77,312 KB
testcase_21 AC 194 ms
77,184 KB
testcase_22 AC 279 ms
77,184 KB
testcase_23 AC 222 ms
77,056 KB
testcase_24 AC 171 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
x1,y1,x2,y2,x3,y3=map(int,input().split())

def check(x4,y4):
    A=[]
    A.append((x1-x2)**2+(y1-y2)**2)
    A.append((x1-x3)**2+(y1-y3)**2)
    A.append((x1-x4)**2+(y1-y4)**2)
    A.append((x2-x3)**2+(y2-y3)**2)
    A.append((x2-x4)**2+(y2-y4)**2)
    A.append((x3-x4)**2+(y3-y4)**2)

    C=Counter(A)

    MAX=max(C.keys())
    MIN=min(C.keys())

    if MAX!=MIN*2:
        return False

    L=list(C.values())
    if L==[2,4] or L==[4,2]:
        #print(A,C)
        return True
    else:
        return False

for x4 in range(-300,301):
    for y4 in range(-300,301):
        if check(x4,y4)==True:
            print(x4,y4)
            exit()

print(-1)
0