[프로그래머스] 멀쩡한 사각형 JAVA

AMUD·2022년 8월 24일
0

Algorithm

목록 보기
31/78

문제


문제링크

접근

  • 그림을 계속 보다가 저런 모양이 계속 반복되는 것을 보고 최대공약수를 생각해내었다.
  • 자료형 유의하기

소스 코드

class Main {
    public static void main(String[] args) throws Exception {
        int w = 8;
        int h = 12;
        Solution sol = new Solution();

        System.out.println("result : " + sol.solution(w, h));
    }
}

class Solution {
    public long solution(int w, int h) {
        long answer = 1;

        int maxDiv = 1;
        int i = 1;
        while(i <= w && i <= h) {
            if(w % i == 0 && h % i == 0) maxDiv = i;
            i++;
        }

        answer = (long) w * (long) h - (w + h);
        answer += maxDiv;

        return answer;
    }
}
profile
210's Velog :: Ambition Makes Us Diligent

0개의 댓글