728x90
SMALL

using System;

class Solution
{
    public long solution(int price, int money, int count)
    {
        long a = price;
        long k = 0;
        
        for(long i = 1;i<=count;i++)
        {
            k += i * a;
        }
        return k >= money ? k-money : 0;
    }
}

 

//// long형으로 선언하고 금액이 부족하지 않을 때에는 0을 리턴하게 하는 것에 주의를 해야할 듯하다.

728x90

설정

트랙백

댓글