- 난이도: Lv1
프로그래머스 링크: https://school.programmers.co.kr/learn/courses/30/lessons/82612
풀이 링크(GitHub): hayannn/CodingTest_Java/프로그래머스/1/82612.부족한 금액 계산하기
풀이 시간 : 12분
import java.util.*;
class Solution {
public long solution(int price, int money, int count) {
long answer = 0;
long total_amount = 0;
for(int i=1; i < count+1; i++){
total_amount += price*i;
}
if(money < total_amount) {
answer = total_amount - money;
}
else {
answer = 0;
}
return answer;
}
}