728x90
반응형
단순 수학 문제이다.
d1, d2, d3 = map(int, input().split())
a = (d1+d2-d3)/2
b = d1-a
c = d2-a
if a > 0 and b > 0 and c > 0:
print(1)
print("%.1f %.1f %.1f" %(a, b, c))
else:
print(-1)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10886번 0 = not cute / 1 = cute(python) (0) | 2021.03.02 |
---|---|
백준 알고리즘 10833번 사과(python) (0) | 2021.03.02 |
백준 알고리즘 18883번 N M 찍기(python) (0) | 2021.03.01 |
백준 알고리즘 18856번 피드백(python) (0) | 2021.03.01 |
백준 알고리즘 18247번 겨울왕국 티켓 예매(python) (0) | 2021.03.01 |