반응형
#include <cmath>
using namespace std;
long long solution(long long n) {
long long answer = 0;
if(sqrt(n) - int(sqrt(n)) == 0 )
return pow(sqrt(n)+1, 2) ;
else
return -1;
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
54] 프로그래머스 3진법 뒤집기 (0) | 2020.10.21 |
---|---|
53] 프로그래머스 이상한 문자 만들기 (0) | 2020.10.19 |
51] 프로그래머스 콜라츠 추측 (0) | 2020.10.14 |
50] 프로그래머스 서울에서 김서방 찾기 (0) | 2020.09.26 |
49★] 프로그래머스 시저 암호 (0) | 2020.09.17 |
댓글