https://programmers.co.kr/learn/courses/30/lessons/12934
방법 1
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class Solution {
public long solution(long n) {
// n의 제곱근
long lSqrt = (long) Math.sqrt(n);
// 제곱근을 다시 제곱한 것이 n 이면 요구사항return
if (Math.pow(lSqrt, 2) == n) {
return ((lSqrt + 1) * (lSqrt + 1));
}
return -1;
}
}
Colored by Color Scripter
|
방법 2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class Solution {
public long solution(long n) {
long lRoot = 0L;
boolean isRootofN = false;
// 제곱근을 찾을 때까지 반복문
while(lRoot * lRoot <= n) {
if (lRoot * lRoot == n) {
isRootofN = true;
break;
}
lRoot++;
}
// 제곱근이면 요구사항return
if (isRootofN) {
return (lRoot + 1) * (lRoot + 1);
}
return -1;
}
}
Colored by Color Scripter
|
방법 1이 더 빠르다
방법 2는 나름의 재주를 부려보려 한 것인데.. 더 느리다 ㅋ.ㅋ
좋은 함수가 있으면 사용을 지양할 필요는 없을 것 같다.
그래도 방법 2는 유실되는 수가 없지 않을까? ㅋㅋ
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스]연습문제 : 최대공약수와 최소공배수 (level 1) (0) | 2019.11.07 |
---|---|
[프로그래머스]연습문제 : 제일 작은 수 제거하기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 정수 내림차순으로 배치하기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 자연수 뒤집어 배열로 만들기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 자릿수 더하기 (level 1) (0) | 2019.11.07 |
댓글