https://school.programmers.co.kr/learn/courses/30/lessons/132267
class Solution {
public int solution(int a, int b, int n) {
int answer = 0;
int left = n;
while(left>=a){
answer += (left/a)*b;
left = (left%a)+(left/a)*b;
}
return answer;
}
}
'JAVA > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] [1차] 다트 게임 (0) | 2024.02.02 |
---|---|
[프로그래머스/자바] (1) | 2024.01.28 |
[프로그래머스/자바] 기사단원의 무기 (1) | 2024.01.27 |
[프로그래머스/자바] 소수 만들기 (0) | 2024.01.26 |
[프로그래머스/자바] 과일 장수 (0) | 2024.01.25 |
댓글