본문 바로가기
Algorithm

(Codility) MinPerimeterRectangle - Javascript

by 안자바먹지 2021. 7. 17.
728x90

문제

 

An integer N is given, representing the area of some rectangle.

The area of a rectangle whose sides are of length A and B is A * B, and the perimeter is 2 * (A + B).

The goal is to find the minimal perimeter of any rectangle whose area equals N. The sides of this rectangle should be only integers.

For example, given integer N = 30, rectangles of area 30 are:

  • (1, 30), with a perimeter of 62,
  • (2, 15), with a perimeter of 34,
  • (3, 10), with a perimeter of 26,
  • (5, 6), with a perimeter of 22.

Write a function:

function solution(N);

that, given an integer N, returns the minimal perimeter of any rectangle whose area is exactly equal to N.

For example, given an integer N = 30, the function should return 22, as explained above.

Write an efficient algorithm for the following assumptions:

  • N is an integer within the range [1..1,000,000,000].

 

코드

 

function solution(N) {
    let result = Number.MAX_SAFE_INTEGER;
    
    for (let i = 1; i ** 2 <= N; i++) {
        if (N % i === 0) {
            result = Math.min(result, (i + (N / i)) * 2)
        }
    }

    return result;
}

 

CounterFactors 문제랑 비슷한 문제!

728x90

댓글