class Solution {
    // Integer.bitCount : 비트로 변환했을 때 1의 갯수 반환
    public int solution(int n) {    
           
        int n_num = Integer.bitCount(n);
        // 주어진 숫자의 비트 형식 1의 갯수 세기
                   
        int k = n+1;
        // n보다 큰 임의의 정수 K
       
        while(true) {
            int k_num = Integer.bitCount(k);
            // K의 비트 형식 1의 갯수 세기                
           
            if(n_num == k_num) {
                break;
                // n과 k의 비트 형식 1 갯수가 같으면 반환
            }
           
            k++;
            // 비트 형식 1 갯수가 다르다면 K의 크기 1 추가
        }
        return k;
    }
}
  
				
Monetize your traffic instantly—enroll in our affiliate network! https://shorturl.fm/08n6n
https://shorturl.fm/mZThu
https://shorturl.fm/ToGJR
https://shorturl.fm/Dy1hh
https://shorturl.fm/4B10F
https://shorturl.fm/VcaQm
https://shorturl.fm/tglLu
https://shorturl.fm/YXTi6
https://shorturl.fm/Ip9Ob
https://shorturl.fm/OPwSN