码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 5142 NPY and FFT(水)

时间:2015-01-25 18:07:23      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

 

http://acm.hdu.edu.cn/showproblem.php?pid=5142

技术分享
#include<cstdio>
#include<cstring>
#include<cmath>
#include<iostream>
#include<algorithm>
using namespace std;
int bin[100];
int main()
{
    int t,n,i,j,k;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        memset(bin,0,sizeof(bin));
        int coun=0;
        while(n)
        {
            bin[coun++]=n%2;
            n/=2;
        }
        while(bin[coun]==0) coun--;
        int ans=0;
        int wei=0;
        for(i=coun;i>=0;i--)
        {
            int temp=bin[i]*(int)pow(2,wei++);
            ans+=temp;
            //printf("%d...\n",temp);
        }
        printf("%d\n",ans);
    }
    return 0;
}
View Code

 

hdu 5142 NPY and FFT(水)

标签:

原文地址:http://www.cnblogs.com/sola1994/p/4248523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!