Recent Posts
Notice
No Rules Rules
2의 제곱인가? (feat. 백준, 11966번) 본문
728x90
반응형
2의 제곱인가?
https://www.acmicpc.net/problem/11966
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
점수계산 (feat. 백준, 2506번) (0) | 2023.04.07 |
---|---|
계보 복원가 호석 (feat. 백준, 21276번) (0) | 2023.04.06 |
중앙 이동 알고리즘 (feat. 백준, 2903번) (0) | 2023.04.05 |
당신은 운명을 믿나요? (feat. 백준, 27930번) (0) | 2023.04.05 |
작업 (feat. 백준, 2056번) (0) | 2023.04.04 |
Comments