class Solution {
public long solution(int price, int money, int count) {
long answer = -1;
long sum = 0;
for(int i=1; i<=count; i++){
sum += price*i;
}
if(sum>money){
answer = sum-money;
}else {
answer = 0;
}
return answer;
}
}
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 문자열 다루기 기본 (0) | 2022.12.01 |
---|---|
[프로그래머스] 이진수 더하기 (0) | 2022.12.01 |
[프로그래머스] 개미 군단 (0) | 2022.11.29 |
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2022.11.29 |
[프로그래머스] 음양 더하기 (0) | 2022.11.29 |