class Solution { public long solution(long n) { double x = Math.sqrt(n); if(x % 1 == 0) return (long)((x+1)*(x+1)); return -1; } }
출처 : 프로그래머스 LV1 정수 제곱근 판별