728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12934
using System;
public class Solution {
public long solution(long n) {
long temp = (long)Math.Sqrt(n);
if (temp * temp == n) return (temp + 1) * (temp + 1);
else return -1;
}
}
:')
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 자연수 뒤집어 배열로 만들기 (0) | 2021.08.15 |
---|---|
[프로그래머스 C#] 정수 내림차순으로 배치하기 (0) | 2021.08.11 |
[프로그래머스 C#] 제일 작은 수 제거하기 (0) | 2021.07.28 |
[프로그래머스 C#] 짝수와 홀수 (0) | 2021.07.17 |
[프로그래머스 C#] 최대공약수와 최소공배수 (0) | 2021.07.10 |