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

이정연·2022년 10월 17일
0

CodingTest

목록 보기
58/165

CODE

def solution(price, money, count):
    all = 0
    for i in range(1,count+1):
        all += price*i
    answer = money-all
    if answer >=0:
        return 0
    else:
        return -1*answer
profile
0x68656C6C6F21

0개의 댓글