#32201: python ans


yuxuan0912 (李毓萱Laura)

學校 : 不指定學校
編號 : 197335
來源 : [1.34.135.237]
最後登入時間 :
2023-12-07 21:47:26
b899. 2. 物品探測 -- 2016高雄市資訊學科能力複賽 | From: [1.34.135.237] | 發表日期 : 2022-09-21 12:32

(刪掉這個括弧)import math
a, b = list(map(int, input().split()))
c, d = list(map(int, input().split()))
e, f = list(map(int, input().split()))
k = math.sqrt((c - a) ** 2 + (b - d) ** 2)
l = math.sqrt((c - e) ** 2 + (f - d) ** 2)
if k > l:
    print(a + c - e, b + d - f)
elif l > k:
    print(c + e - a, d + f - b)
else:
    print(a + e - c, f + b - d)

 
ZeroJudge Forum