콜라병 LV1, https://school.programmers.co.kr/learn/courses/30/lessons/132267 # 0505 15:50 - 16:04 def solution(a, b, n): count = 0 while n>=a: A = (n // a)*b B = n % a count += A n = A+B answer = count return answer 달리기경주 LV1, https://school.programmers.co.kr/learn/courses/30/lessons/178871 계속 시간복잡도 초과 #0505 16:12 16:50 -> 시간초과 케이스 발생 # 시간복잡도 초과 def solution(players, callings): rank = {} #{player:r..