class Solution {
public int solution(int hp) {
int answer = 0;
while(hp>=5){
hp-=5;
answer++;
}
while(hp>=3){
hp-=3;
answer++;
}
while(hp>0){
hp--;
answer++;
}
return answer;
}
}
class Solution {
public int solution(int hp) {
return hp / 5 + (hp % 5 / 3) + (hp % 5 % 3);
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 중복된 숫자 개수 (0) | 2023.03.09 |
---|---|
[프로그래머스/자바] 배열 원소의 길이 (0) | 2023.03.08 |
[프로그래머스/자바] 자릿수 더하기 (0) | 2023.03.07 |
[프로그래머스/자바] 약수의 합('자바 입문' 강의 마지막 문제) (0) | 2023.02.24 |
[프로그래머스/자바] 삼각형의 완성조건(1) (0) | 2023.02.23 |