-Code
stopWatch = [int(input()) for _ in range(int(input()))]
if len(stopWatch) % 2 == 1:
print("still running")
else:
result = 0
for i in range(0, len(stopWatch), 2):
result += stopWatch[i + 1] - stopWatch[i]
print(result)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 20360번 Binary numbers (0) | 2022.11.05 |
---|---|
[백준/파이썬] 16175번 General Election (0) | 2022.11.04 |
[백준/파이썬] 23103번 Academic Distance (0) | 2022.11.02 |
[백준/파이썬] 9306번 Practice: Roll Call (0) | 2022.11.01 |
[백준/파이썬] 17548번 Greetings! (0) | 2022.10.31 |