728x90
반응형
class Solution {
public long solution(int price, int money, int count) {
long answer = 0;
for(int i=1; i<=count; i++){
answer+=price*i;
}
if(money-answer>0){
return 0;
}
return answer-money;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 직사각형 별찍기 (0) | 2023.03.27 |
---|---|
프로그래머스 - 행렬의 덧셈 (0) | 2023.03.27 |
프로그래머스 - 문자열 다루기 기본 (0) | 2023.03.26 |
프로그래머스 - 약수의 개수와 덧셈 (0) | 2023.03.26 |
프로그래머스 - 문자열 내림차순으로 배치하기 (0) | 2023.03.26 |