본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24198번 Muffinspelet

by 현장 2024. 7. 8.

-Code

n = int(input())
res, cnt = [0, 0], 0

while n:
    cnt += 1
    res[cnt % 2] += (n + 1) // 2
    n //= 2

print(*res)