[문제] 주어진 조건에 맞게 주차 요금을 계산하는 문제 - 입장료 : 2 - 첫 1시간 : 3 - 이후 시간 : 4 [코드] def solution(E, L): # write your code in Python 3.6 tempE = E.split(':') tempL = L.split(':') answer = 5 startH = int(tempE[0]) * 60 startM = int(tempE[1]) endH = int(tempL[0]) *60 endM = int(tempL[1]) start = startH + startM end = endH + endM count = end - start div = int(count/60) left = count%60 if div >= 1 : answer = answe..