/ Randle /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 4ms 256.0 KiB
#2 Accepted 4ms 352.0 KiB
#3 Accepted 4ms 376.0 KiB
#4 Accepted 4ms 384.0 KiB
#5 Accepted 3ms 384.0 KiB
#6 Accepted 4ms 336.0 KiB
#7 Accepted 10ms 208.0 KiB
#8 Accepted 7ms 384.0 KiB
#9 Accepted 7ms 352.0 KiB
#10 Accepted 10ms 364.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>>=1;
			else y>>=1;
			cnt++;
		}
		printf("%d\n",cnt);
	}
}

信息

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