No Rules Rules

2의 제곱인가? (feat. 백준, 11966번) 본문

생활/코테

2의 제곱인가? (feat. 백준, 11966번)

개발하는 완두콩 2023. 4. 6. 12:24
728x90
반응형

2의 제곱인가?
https://www.acmicpc.net/problem/11966

 

11966번: 2의 제곱인가?

자연수 N이 주어졌을 때, 2의 제곱수면 1을 아니면 0을 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <math.h>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    register long long N, ans = 1;
    cin >> N;
    if(N == 1)
        cout << ans;
    else if(N & 1)
        cout << 0;
    else{
        while(N > 1){
            if(N % 2){
                ans = 0;
                break;
            }
            N /= 2;
        }
        cout << ans;
    }
	return 0;
}
// *&)*@*

 

반응형

단순 연산 문제입니다.

728x90
반응형
Comments