class Solution {
public long solution(long n) {
Double num = Math.sqrt(n);
return num == num.intValue() ? (long)Math.pow(num + 1, 2) : -1;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 정수 내림차순으로 배치하기 (0) | 2023.02.08 |
---|---|
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2023.02.08 |
[프로그래머스] 문자열 내 p와 y의 개수 (0) | 2023.02.08 |
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2023.02.07 |
[프로그래머스] 자릿수 더하기 (0) | 2023.02.07 |