파이톨치

[백준] 1051 본문

카테고리 없음

[백준] 1051

파이톨치 2023. 2. 14. 19:38
728x90
# 라운드는 2의 배수
import math
n, a, b = map(int, input().split())
k = math.ceil(math.log(n, 2))
n = 0
a-=1; b-=1
while a != b:
  a //= 2
  b //= 2
  n  += 1

print(n)
728x90