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

XDOJ_1019_数学

时间:2016-10-17 20:54:50      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

http://acm.xidian.edu.cn/problem.php?id=1019

 

末尾0由2*5构成,2足够多,看5的数量就可以了。注意25是2个5,125是3个5...

先用等比公式推出趋于极限时,n = m*4,但实际可能比这个数大一点,向上找就好了。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int f(int x)
{
    int now = 5,ans = 0;
    while(now <= x)
    {
        ans += x/now;
        now *= 5;
    }
    return ans;
}
int main()
{
    int T,n;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        int ans = n*4;
        while(f(ans) < n)    ans++;
        if(f(ans) == n)    printf("%d\n",ans);
        else    printf("No solution\n");
    }
    return 0;
}

 

XDOJ_1019_数学

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5970922.html

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