728x90
반응형
단순 사칙연산 문제이다.
from math import pi
i = 1
while 1:
d, r, t = map(float, input().split())
if r == 0:
break
dis = d/63360 * pi * r
mph = dis / t * 3600
print("Trip #%d: %.2f %.2f" % (i, dis, mph))
i += 1
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2875번 대회 or 인턴(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 2783번 삼각 김밥(python) (0) | 2021.02.12 |
백준 알고리즘 2754번 학점계산(python) (0) | 2021.02.11 |
백준 알고리즘 2721번 삼각수의 합(python) (0) | 2021.02.11 |
백준 알고리즘 2720번 세탁소 사장 동혁(python) (0) | 2021.02.11 |