[프로그래머스] 정수 제곱근 판별

peach·2020년 9월 8일
4

프로그래머스

목록 보기
22/40
post-thumbnail

🌼 문제 설명

임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다.
n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함수를 완성하세요.


🌼 제한 조건

  • n은 1이상, 50000000000000 이하인 양의 정수입니다.

🌼 입출력 예

nresult
121144
3-1



🌻 C++ 코드

#include <string>
#include <vector>
#include <cmath>

using namespace std;

long long solution(long long n) {
    long long answer = 0;
    double temp;
    
    temp = sqrt(n);
    
    if(temp - (int)temp == 0) {
        answer = pow(temp + 1, 2);
    } else {
        answer = -1;
    }
    
    return answer;
}

0개의 댓글