#include <iostream>
using namespace std;
int solution(int n, int a, int b)
{
int answer = 0;
while(true){
answer ++;
if(a%2 ==0 )
a = a/2;
else
a = a/2 + 1;
if(b%2 == 0)
b = b/2;
else
b = b/2 + 1;
if(a == b)
break;
}
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 숫자 게임 (0) | 2019.10.04 |
---|---|
[프로그래머스] 방문길이 (0) | 2019.10.04 |
[프로그래머스] 점프와 순간이동 (0) | 2019.08.13 |
[프로그래머스] 소수 만들기 (0) | 2019.08.08 |
[프로그래머스] 숫자의 표현 (0) | 2019.07.30 |