카펫

카펫

Leo는 카펫을 사러 갔다가 아래 그림과 같이 중앙에는 노란색으로 칠해져 있고 테두리 1줄은 갈색으로 칠해져 있는 격자 모양 카펫을 봤습니다.

carpet.png

Leo는 집으로 돌아와서 아까 본 카펫의 노란색과 갈색으로 색칠된 격자의 개수는 기억했지만, 전체 카펫의 크기는 기억하지 못했습니다.

Leo가 본 카펫에서 갈색 격자의 수 brown, 노란색 격자의 수 yellow가 매개변수로 주어질 때 카펫의 가로, 세로 크기를 순서대로 배열에 담아 return 하도록 solution 함수를 작성해주세요.

https://school.programmers.co.kr/learn/courses/30/lessons/42842



public class Main {

    public static void main(String[] args) {

        int brown = 10;
        int yellow = 2;

        var reuslt = solution(brown, yellow);

        System.out.println(Arrays.toString(reuslt));
    }

    public static int[] solution(int brown, int yellow) {

        int i = 0;

        while (true) {
            i++;

            int temp = yellow / i;
            int temp_ = yellow % i;

            if (temp_ != 0) {
                continue;
            }

            int br = (i + 2) * 2 + temp * 2;

            if (br == brown) {
                return new int[]{temp + 2, i + 2};
            }
        }

    }

}