728x90
반응형
https://github.com/ROUTINE-STUDY/Algorithm
알고리즘 스터디를 진행하고 있습니다. 😊
초보들로 구성되어있으며, 열심히 풀어보고 풀이 방식을 공유하고 피드백을 해주는 스터디입니다.
참여 문의는 댓글 혹은 GitHub 주소를 참고해주세요.
문제 출처 : https://programmers.co.kr/learn/courses/30/lessons/82612
문제 설명
풀이 방법
1. 놀이기구를 타기 위한 총 비용을 계산
2. 가진 돈과 비교하여 return 값 지정
내 코드(JAVA)
public class Solution {
public long solution(int price, int money, int count) {
long answer = -1;
int totalPrice = 0;
// 1. 놀이기구를 타기위한 총 비용을 계산
for(int i=1; i<=count; i++) {
totalPrice += price * i;
}
// 2. 가진 돈과 비교 하여 return 값 지정
answer = (totalPrice > money) ? totalPrice-money : 0;
return answer;
}
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
[프로그래머스/JAVA] 복서 정렬하기 (0) | 2021.09.13 |
---|---|
[프로그래머스/JAVA] 상호 평가 (0) | 2021.09.11 |
[LeetCode/JAVA] 1684. Count the Number of Consistent Strings (0) | 2021.09.04 |
[LeetCode/JAVA] 965. Univalued Binary Tree (0) | 2021.09.01 |
[LeetCode/JAVA] 993. Cousins in Binary Tree (0) | 2021.08.31 |
댓글