[프로그래머스] 부족한 금액 계산하기(python)

.·2022년 6월 1일
0

문제 링크 - https://programmers.co.kr/learn/courses/30/lessons/82612


사고 과정

  • 놀이기구를 타는 횟수만큼 x count를 해야하므로 for문의 범위를 price에서 price*count+1까지 하고, 증가폭을 price로 하였다.
  • 그리고 금액이 모자라지 않다면 0을 return하게 했다.

나의 풀이

def solution(price, money, count):
    total = 0
    for i in range(price, price*count+1, price):
        total += i
    return total-money if money<total else 0

0개의 댓글