728x90
반응형
단순 사칙연산 문제이다.
i = 1
while 1:
li = list(map(int, input().split()))
if li[0] == 0:
break
r, w, l = li
d = (w/2)**2 + (l/2)**2
if r**2 >= d:
print(f"Pizza {i} fits on the table.")
else:
print(f"Pizza {i} does not fit on the table.")
i += 1
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 6318번 Box of Bricks(python) (0) | 2021.03.09 |
---|---|
백준 알고리즘 6721번 Backward number(python) (0) | 2021.03.09 |
백준 알고리즘 6479번 Factorial Frequencies(python) (0) | 2021.03.09 |
백준 알고리즘 6367번 Color Me Less(python) (0) | 2021.03.09 |
백준 알고리즘 1459번 걷기(python) (0) | 2021.03.09 |