K(CD1684)
  W79oLdECuAdO 2023年11月12日 21 0


#include<stdio.h>

int main()
{
	int i,j,k;
	int a,b;
	int t;
	scanf("%d",&t);
	while (t--)
	{
		scanf("%d",&a);
		b=a+1;
		k=a^b;
		j=0;
		while (k)
		{
			j+=k&1;
			k=k>>1;
		}
		printf("%d\n",j);
	}
	return 0;
}



K

Time Limit: 1000 ms Memory Limit: 65536 kB Solved: 122 Tried: 173


Description



Give you a non-negative integer x and an operation. The only operation you can do is to reverse one bit in binary form of x once(i.e 1->0, 0->1).
your goal is to turn x into x+1.
Calculate the minimum times of operations you need to do.



Input



The first line of the input is an integer T indicates the test cases.
Then follow T lines. Each line is a non-negative integer x as described above, note that 0<=x<10^9.



Output



Output the minimum times of operations you need to do to reach the goal.



Simple Input



3
1
2
3



Simple Output



2
1
3



Source



【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

上一篇: CD1611 下一篇: I(cd1682)
  1. 分享:
最后一次编辑于 2023年11月12日 0

暂无评论

W79oLdECuAdO
作者其他文章 更多