[프로그래머스]개미 군단

박예림·2023년 3월 6일
0

코테

목록 보기
40/132

class Solution {
    public int solution(int hp) {
        int answer = 0;
        int temp = 0;
        
        answer = hp/5;
        temp = hp % 5;

        answer += temp/3;
        temp = temp % 3;

        answer += temp/1;
        temp = temp % 1;
 
        
        return answer;
    }
}
profile
응애 나 아기개발자

0개의 댓글