結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー vwxyzvwxyz
提出日時 2021-06-19 17:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 1,024 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 86,812 KB
実行使用メモリ 91,800 KB
最終ジャッジ日時 2023-09-05 01:04:45
合計ジャッジ時間 8,310 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
91,544 KB
testcase_01 AC 243 ms
91,728 KB
testcase_02 AC 239 ms
91,504 KB
testcase_03 AC 239 ms
91,472 KB
testcase_04 AC 243 ms
91,800 KB
testcase_05 AC 239 ms
91,468 KB
testcase_06 AC 240 ms
91,764 KB
testcase_07 AC 244 ms
91,640 KB
testcase_08 AC 238 ms
91,472 KB
testcase_09 AC 239 ms
91,756 KB
testcase_10 AC 242 ms
91,480 KB
testcase_11 AC 248 ms
91,576 KB
testcase_12 AC 239 ms
91,580 KB
testcase_13 AC 239 ms
91,420 KB
testcase_14 AC 243 ms
91,704 KB
testcase_15 AC 243 ms
91,640 KB
testcase_16 AC 241 ms
91,472 KB
testcase_17 AC 238 ms
91,624 KB
testcase_18 AC 240 ms
91,764 KB
testcase_19 AC 244 ms
91,372 KB
testcase_20 AC 241 ms
91,580 KB
testcase_21 AC 239 ms
91,560 KB
testcase_22 AC 244 ms
91,504 KB
testcase_23 AC 243 ms
91,728 KB
testcase_24 AC 244 ms
91,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
from collections import Counter, deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

x1,y1,x2,y2,x3,y3=map(int,read().split())
if (x1-x2)**2+(y1-y2)**2==(x2-x3)**2+(y2-y3)**2:
    x1,y1,x2,y2=x2,y2,x1,y1
elif (x1-x3)**2+(y1-y3)**2==(x2-x3)**2+(y2-y3)**2:
    x1,y1,x3,y3=x3,y3,x1,y1
if (x1-x2)**2+(y1-y2)**2!=(x1-x3)**2+(y1-y3)**2:
    print(-1)
    sys.exit()
if (x2-x1)*(x3-x1)+(y2-y1)*(y3-y1)!=0:
    print(-1)
    sys.exit()
print(x2+x3-x1,y2+y3-y1)
0