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

Yunki Kim·2022년 12월 26일
0

프로그래머스

목록 보기
35/101
post-thumbnail

문제


링크


코드

class Solution {
    public int solution(int hp) {
        return (hp / 5) + ((hp % 5) / 3) + ((hp % 5) % 3);
    }
}

리뷰

0개의 댓글