class Solution {
    public long solution(int price, int money, int count) {
        long answer = 0;
        long temp = 0;
        
        for (int i=1; i<=count; i++){
            temp += price * i;
        }
        
        answer = temp - money;
        
        if(temp < money){
            answer= 0;
        }
        else{
            answer=Math.abs(answer);
        }
        
        return answer;
    }
}

 

1. temp 변수 값에 count값 만큼 금액을 더해준다.

2. 총 필요한 놀이기구 값 - 현재 금액을 해준다.

3. 만약 가지고 있는 돈이 총 필요한 놀이기구 값을 충당할 수 있다면 0을 return 해주고

4. 아니면 answer값을 절대값으로 전환하여 리턴해준다.