class Solution {
public long solution(long n) {
return Math.sqrt(n)-(long)(Math.sqrt(n))==0 ? (long)(Math.pow(Math.sqrt(n)+1, 2)) : -1;
}
}
'Problem Solving > Programmers' 카테고리의 다른 글
[Level 1] 최대공약수와 최소공배수 (0) | 2022.03.25 |
---|---|
[Level 1] 제일 작은 수 제거하기 (0) | 2022.03.24 |
[Level 1] 이상한 문자 만들기 (0) | 2022.03.24 |
[Level 1] 시저 암호 (0) | 2022.03.24 |
[Level 1] 소수 찾기 (0) | 2022.03.24 |