728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/68935
using System;
using System.Linq;
using System.Collections.Generic;
public class Solution {
public int solution(int n) {
int answer = 0;
string temp = "";
while(n != 0)
{
temp += (n % 3).ToString();
n /= 3;
}
char[] chr_temp = long.Parse(temp).ToString().ToCharArray();
Array.Reverse(chr_temp);
temp = new string(chr_temp);
for (int i = -1; ++i < temp.Length;)
answer += int.Parse(temp[i].ToString()) * (int)Math.Pow(3, i);
return answer;
}
}
음.. 지금 보니까 너무 더럽다.. 아닌가.. 음
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 2주차 상호 평가 (0) | 2021.09.06 |
---|---|
[프로그래머스 C#] 약수의 개수와 덧셈 (0) | 2021.09.05 |
[프로그래머스 C#] 예산 (0) | 2021.09.04 |
[프로그래머스 C#] 1주차 부족한 금액 계산하기 (0) | 2021.09.04 |
[프로그래머스 C#] 두 개 뽑아서 더하기 (0) | 2021.09.03 |