728x90
반응형
단순 구현 문제이다.
while 1:
n = int(input())
if n == -1:
break
cp = res = 0
for _ in range(n):
s, t = map(int, input().split())
res += s*(t-cp)
cp = t
print(f"{res} miles")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4690번 완전 세제곱(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4655번 Hangover(python) (0) | 2021.02.13 |
백준 알고리즘 4623번 Copier Reduction(python) (0) | 2021.02.13 |
백준 알고리즘 4493번 가위 바위 보?(python) (0) | 2021.02.13 |
백준 알고리즘 4388번 받아올림(python) (0) | 2021.02.13 |