05-20-2022 One Question a Day

·2022년 5월 20일
0
post-custom-banner
def solution(price, money, count):
    answer = 0
    c = 0 
    for i in range(1, count+1):
        c += price * i
    total_price = c - money
    if total_price > 0:
        answer = total_price
        return answer
    else:
        return answer

알고리즘 2일차에 봤던 문제다. 그때에는 문제자체를 잘 이해하지 못했는데, 나중에 다시보니 너무나 쉽게 풀린 문제다. count를 for를 사용해 price * i 를 했다. 그 금액에서 가지고 있는 money를 빼주면 되는 문제였다.

내일은 K번째 수 를 풀어봐야겠다.

profile
Life is a natural-nine

0개의 댓글