https://programmers.co.kr/learn/courses/30/lessons/82612
문제 설명
새로 생긴 놀이기구는 인기가 매우 많아 줄이 끊이질 않습니다. 이 놀이기구의 원래 이용료는 price원 인데,
놀이기구를 N 번 째 이용한다면 원래 이용료의 N배를 받기로 하였습니다.
즉, 처음 이용료가 100이었다면 2번째에는 200, 3번째에는 300으로 요금이 인상됩니다.
놀이기구를 count번 타게 되면 현재 자신이 가지고 있는 금액에서 얼마가 모자라는지를 return 하도록 solution 함수를 완성하세요.
단, 금액이 부족하지 않으면 0을 return 하세요.
제한사항
- 놀이기구의 이용료 price : 1 ≤ price ≤ 2,500, price는 자연수
- 처음 가지고 있던 금액 money : 1 ≤ money ≤ 1,000,000,000, money는 자연수
- 놀이기구의 이용 횟수 count : 1 ≤ count ≤ 2,500, count는 자연수
class Solution {
public long solution(int price, int money, int count) {
long answer = -1;
long total = 0;
for(int idx = 1; idx <= count; idx++) {
int temp = price * idx;
total = temp + total;
}
if(money >= total) {
answer = 0;
}
else{
answer = total - money;
}
return answer;
}
}
다른 분 풀이
class Solution {
public long solution(long price, long money, long count) {
return Math.max(price * (count * (count + 1) / 2) - money, 0);
}
}
'Algorithm > 프로그래머스' 카테고리의 다른 글
푸드 파이트 대회 (0) | 2023.02.28 |
---|---|
가장 가까운 같은 글자 (0) | 2023.02.28 |
[프로그래머스] 상호 평가 (0) | 2021.08.11 |
[프로그래머스] - 로또의 최고 순위와 최저 순위 (0) | 2021.07.21 |
[프로그래머스] - [1차] 추석 트래픽 (0) | 2021.04.07 |