728x90
반응형
단순 수학 문제이다.
import sys
for _ in range(int(input())):
a = int(sys.stdin.readline())
t = int(bin(a)[2:])
if t&(-t) == a:
print(1)
else:
print(0)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15995번 잉여역수 구하기(python) (0) | 2021.02.27 |
---|---|
백준 알고리즘 15923번 욱제는 건축왕이야!!(python) (0) | 2021.02.27 |
백준 알고리즘 15820번 맞았는데 왜 틀리죠?(python) (0) | 2021.02.27 |
백준 알고리즘 15818번 오버플로우와 모듈러(python) (0) | 2021.02.27 |
백준 알고리즘 15792번 A/B - 2(python) (0) | 2021.02.27 |