16 8 9
1 2 3 4 5 6 7 (8) (9) 10 11 12 13 14 15 16
1 2 3 (4) (5) 6 7 8
1 (2) (3) 4
(1) (2) <-- 만남 (4라운드)
n, a, b = map(int, input().split())
round = 1
while not (int(a%2) == 1 and a + 1 == b):
a, b = int((a+1)/2), int((b+1)/2)
round += 1
print(round)
시간초과가 나왔다..
if문의 복잡한 조건을 계속 확인하느라 오래걸린듯 싶다.
n, a, b = map(int, input().split())
round = 0
while a != b:
a, b = a - a//2, b - b//2
round += 1
print(round)