Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨1] 3진법 뒤집기 본문
반응형
#include <string>
#include <vector>
#include <stack>
using namespace std;
int solution(int n) {
int answer = 0;
stack<int> a;
while(n >= 1)
{
a.push(n % 3);
n /= 3;
}
int len = a.size();
int digit = 1;
for(int i = 0; i < len; ++i)
{
answer += a.top() * digit;
a.pop();
digit *= 3;
}
return answer;
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨1] 약수의 개수와 덧셈 (0) | 2021.09.07 |
---|---|
[레벨1] 예산 (0) | 2021.09.07 |
[레벨1] 같은 숫자는 싫어 (0) | 2021.09.05 |
[레벨1] 나누어 떨어지는 숫자 배열 (0) | 2021.09.05 |
[레벨1] 문자열 내마음대로 정렬하기 (0) | 2021.09.05 |
Comments