파이썬에서 / 와 // 의 차이에 유의해서 풀자. //는 /와 달리 정수형의 결과값을 반환한다.
import sys
input = sys.stdin.readline
home_to_school = int(input())
school_to_pc = int(input())
pc_to_academy = int(input())
academy_to_home = int(input())
sum = home_to_school + school_to_pc + pc_to_academy + academy_to_home
print(sum // 60)
print(sum % 60)
728x90
반응형
'Algorithm > 백준' 카테고리의 다른 글
백준 10172- 강아지 python (0) | 2021.03.18 |
---|---|
백준 9653- 스타워즈 파이썬 (0) | 2021.03.18 |
백준 5339 - 콜센터 (0) | 2021.03.18 |
백준 3046 - 파이썬 R2 (구현) (0) | 2021.03.18 |
백준 3003 - 파이썬 기초 구현문제(킹, 퀸, 룩, 비숍, 나이트, 폰) (0) | 2021.03.18 |