슈콩

[프로그래머스] Lv.2 다음 큰 숫자 본문

Algorithms/Programmers

[프로그래머스] Lv.2 다음 큰 숫자

shukong 2025. 10. 13. 23:18

[문제]

https://school.programmers.co.kr/learn/courses/30/lessons/12911

 

프로그래머스

SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

 

 

[소스 코드]

class Solution {
    public int solution(int n) {
        int cnt = Integer.bitCount(n);
        int answer = n;
        while(true){
            answer++;
            int cmp = Integer.bitCount(answer);
            if(cnt==cmp) break;
        }
        return answer;
    }
}