https://www.acmicpc.net/problem/11966
Python Code
N = int(input())
squares = [2**i for i in range(31)]
if N in squares:
print(1)
else:
print(0)
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#273 백준 파이썬 [5597] 과제 안 내신 분..? (0) | 2019.12.10 |
---|---|
#272 백준 파이썬 [3058] 짝수를 찾아라 (0) | 2019.12.10 |
#270 백준 파이썬 [16561] 3의 배수 (0) | 2019.12.10 |
#269 백준 파이썬 [2902] KMP는 왜 KMP일까? (0) | 2019.12.10 |
#268 백준 파이썬 [2864] 5와 6의 차이 (0) | 2019.12.10 |