/ Randle /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 5ms 368.0 KiB
#2 Accepted 4ms 384.0 KiB
#3 Accepted 4ms 256.0 KiB
#4 Accepted 4ms 368.0 KiB
#5 Accepted 4ms 368.0 KiB
#6 Accepted 4ms 256.0 KiB
#7 Accepted 13ms 340.0 KiB
#8 Accepted 11ms 364.0 KiB
#9 Accepted 11ms 352.0 KiB
#10 Accepted 11ms 384.0 KiB

代码

#include <bits/stdc++.h>
using namespace std;

inline int read()
{
	char ch=getchar();
	int x=0;
	while(!isdigit(ch))
		ch=getchar();
	while(isdigit(ch))
	{
		x=x*10+ch-'0';
		ch=getchar();
	}
	return x;
}
int n;
int main()
{
	int x,y,cnt;
	n=read();
	while(n--)
	{
		x=read(),y=read();
		cnt=0;
		while(x!=y)
		{
			if(x>y) x/=2;
			else y/=2;
			cnt++;
		}
		printf("%d\n",cnt);
	}
}

信息

递交者
类型
递交
题目
三向城T1
题目数据
下载
语言
C++
递交时间
2017-11-07 14:35:38
评测时间
2017-11-07 14:35:38
评测机
分数
100
总耗时
75ms
峰值内存
384.0 KiB