정수 제곱근 판별
문제 #
임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다.
n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함수를 완성하세요.
- 제한사항
- n은 1이상, 50000000000000 이하인 양의 정수입니다.
- 입출력 예
n return 121 144 3 -1
나의 풀이 #
class Solution {
public long solution(long n) {
long answer = 0;
long sqr = (long)Math.sqrt(n);
return sqr*sqr == n ? (sqr+1)*(sqr+1) : -1;
}
}
class Solution {
public long solution(long n) {
long answer = 0;
// Math.pow()사용시
return Math.pow(Math.sqrt(n),2) == n ? (long)Math.pow(Math.sqrt(n)+1,2) : -1;
}
}
다른 사람의 풀이 #
class Solution {
public long solution(long n) {
if (Math.pow((int)Math.sqrt(n), 2) == n) {
return (long) Math.pow(Math.sqrt(n) + 1, 2);
}
return -1;
}
}