백준 5554 - 심부름 가는 길 python
·
Algorithm/백준
파이썬에서 / 와 // 의 차이에 유의해서 풀자. //는 /와 달리 정수형의 결과값을 반환한다. 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) www.acmicpc.net/problem/5554 5554번: 심부름 가는 길 승균이는 매일 학교, PC방, 학원에 다닌다. 반복되는 일상에 익숙해진 ..
takoyummy
'심부름 가는 길 파이썬' 태그의 글 목록