[백준] 1094번 : 막대기 - Python(파이썬)

강재원·2022년 10월 19일
0

[코딩테스트] Python

목록 보기
126/200
post-custom-banner



https://www.acmicpc.net/problem/1094

n=int(input())
sum=64
a=64
count=1
if n==64:
    print("1")
else:
    for i in range(7):
        if sum-int(a/2)>n:
            sum-=int(a/2)
        elif sum-int(a/2)<n:
            count+=1
        a/=2
    print(count)
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글