728x90
안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#include <string>
#include <vector>
using namespace std;
int Count(int n)
{
int bin = 0;
int cnt = 0;
for(int i=1;n>0;i=i*10)
{
int one = n%2;
if(one==1)
cnt++;
n=n/2;
}
//printf("cnt = %d\n",cnt);
return cnt;
}
int solution(int n) {
int answer = 0;
for(int i=n+1;;i++)
{
if(Count(i)==Count(n))
{
answer = i;
break;
}
}
return answer;
}
네이버 블로그 리뉴얼입니다.
728x90
'개발 > Coding Test' 카테고리의 다른 글
[프로그래머스 C++ Lv2] 폰켓몬 (0) | 2022.06.06 |
---|---|
[프로그래머스 C++ Lv2] 땅따먹기 (0) | 2022.06.06 |
[프로그래머스 C++ Lv2] 올바른 괄호 (0) | 2022.06.06 |
[프로그래머스 C++ Lv2] 가장 큰 정사각형 찾기 (0) | 2022.06.06 |
[프로그래머스 C++ Lv2] 카펫 (0) | 2022.06.06 |
댓글