/ Randle /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 1ms 200.0 KiB
#2 Accepted 1ms 208.0 KiB
#3 Accepted 1ms 208.0 KiB
#4 Accepted 1ms 212.0 KiB
#5 Accepted 1ms 204.0 KiB
#6 Accepted 1ms 212.0 KiB
#7 Accepted 5ms 204.0 KiB
#8 Accepted 5ms 200.0 KiB
#9 Accepted 5ms 304.0 KiB
#10 Accepted 5ms 204.0 KiB

代码


#include <bits/stdc++.h>
using namespace std;
int m,n;
int main()
{
//    freopen("sort.in","r",stdin);
//    freopen("sort.out","w",stdout);
	  int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
    {
        int x,y,ans=0;
        scanf("%d %d",&x,&y);
        while(x!=y)
        {
            ans++;
            if(y>x) swap(x,y);
            x/=2;
        }
        printf("%d\n",ans);
    }
	return 0;
}

信息

递交者
类型
递交
题目
三向城T1
题目数据
下载
语言
C++
递交时间
2019-12-13 15:54:06
评测时间
2019-12-13 15:54:06
评测机
分数
100
总耗时
32ms
峰值内存
304.0 KiB