728x90
프로그래머스 1단계
부족한 금액 계산하기
https://programmers.co.kr/learn/challenges
문제 설명
풀이
class Solution {
public long solution(int price, int money, int count) {
long answer = money;
for (; count > 0; count--) {
answer -= price * count;
}
return answer < 0 ? (answer * -1) : 0;
}
}
728x90
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 음양 더하기 (1) | 2022.04.25 |
---|---|
[프로그래머스] 제일 작은 수 제거하기 (0) | 2022.04.25 |
[프로그래머스] 내적 (0) | 2022.04.25 |
[프로그래머스] 문자열 내림차순으로 배치하기 (0) | 2022.04.25 |
[프로그래머스] 없는 숫자 더하기 (0) | 2022.04.25 |
댓글