当前位置:   article > 正文

E - Cutting Game FZU - 2268_hentaigame

hentaigame

Fat brother and Maze are playing a kind of special (hentai) game with a piece of gold of length N where N is an integer. Although, Fat Brother and Maze can buy almost everything in this world (except love) with this gold, but they still think that is not convenient enough. Just like if they would like to buy the moon with M lengths of the gold, the man who sold the moon need to pay back Fat Brother and Maze N-M lengths of the gold, they hope that they could buy everything they can afford without any change. So they decide to cut this gold into pieces. Now Fat Brother and Maze would like to know the number of the pieces they need to cut in order to make them fulfill the requirement. The number of the gold pieces should be as small as possible. The length of each piece of the gold should be an integer after cutting.

Input

The first line of the data is an integer T (1 <= T <= 100), which is the number of the text cases.

Then T cases follow, each case contains an integer N (1 <= N <= 10^9) indicated the length of the gold.

Output

For each case, output the case number first, and then output the number of the gold pieces they need to cut.

Sample Input
1
3
Sample Output
Case 1: 2
Hint

In the first case, the gold can be cut into 2 pieces with length 1 and 2 in order to buy everything they can afford without change.

写几个就可以发现规律

  1. #include<cstdio>
  2. int main(){
  3. int t,n,i,p=1,sum;
  4. scanf("%d",&t);
  5. while(t--){
  6. scanf("%d",&n);sum=0;
  7. for(i=0;i<31;i++){sum+=1<<i;if(sum>=n)break;}
  8. printf("Case %d: %d\n",p++,i+1);
  9. }
  10. }



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/article/detail/59439
推荐阅读
  

闽ICP备14008679号