SMALL
안녕하세요 남갯입니다.
중간이 가장 작은수 일 수 밖에 없다
public int solution(int N) {
// write your code in Java SE 8
//즉 제곱근까지의 반까지 나눠지는 갯수 x 2 = 총 개수
double sqrt = Math.sqrt(N);
int first = 1;
for (int i = 1; i <= sqrt; i++) {
if (N % i == 0) {
first = i;
}
}
int last = N / first;
return 2 * (first + last);
}
LIST
'IT > 알고리즘' 카테고리의 다른 글
[코딜리티] - Lesson 11 CountSemiprimes (0) | 2019.10.15 |
---|---|
[코딜리티] - Lesson 10 Peak (0) | 2019.10.01 |
[코딜리티] - Lesson 9.MaxDoubleSliceSum (2) | 2019.09.25 |
[코딜리티] - Lesson 10.CountFactors (0) | 2019.09.23 |
[코딜리티] - Lesson 9.MaxSliceSum (0) | 2019.09.23 |