博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
light oj 1138 - Trailing Zeroes (III)(阶乘末尾0)
阅读量:5060 次
发布时间:2019-06-12

本文共 1314 字,大约阅读时间需要 4 分钟。

You task is to find minimal natural number N, so that N! contains exactly Q zeroes on the trail in decimal notation. As you know N! = 1*2*...*N. For example, 5! = 120, 120 contains one zero on the trail.

Input

Input starts with an integer T (≤ 10000), denoting the number of test cases.

Each case contains an integer Q (1 ≤ Q ≤ 108) in a line.

Output

For each case, print the case number and N. If no solution is found then print 'impossible'.

Sample Input

Output for Sample Input

3

1

2

5

Case 1: 5

Case 2: 10

Case 3: impossible

水题一发,直接二分查找。

#include
#include
#include
#define LL long longusing namespace std;LL n;LL erfen(){ LL ans=-1, l=5, r=400000020;//想想r的值为什么这样定(因为此时r!等于10^8+1) while(l<=r) { LL mid=(l+r)/2; LL sum=0, s=mid; while(s>0) sum+=s/5,s/=5; if(sum==n) { r=mid-1; ans=mid; } else if(sum>n) r=mid-1; else l=mid+1; } return ans;}int main(){ int T, t=1; scanf("%d", &T); while(T--) { scanf("%lld", &n); LL s=erfen(); if(s!=-1) printf("Case %d: %lld\n", t++, s); else printf("Case %d: impossible\n", t++); }}

 

转载于:https://www.cnblogs.com/zhulei2/p/8206494.html

你可能感兴趣的文章
存储过程里构建模糊查询,引号的处理
查看>>
黑莓游戏引擎
查看>>
Dijkstra算法和其邻接矩阵实现
查看>>
IE6 中 window.location.href 不能跳转
查看>>
v形 加强版
查看>>
EMVTag系列12《卡片内部风险管理数据》
查看>>
Recommendation system
查看>>
linux批量删除进程
查看>>
第二次代码作业
查看>>
[转载] 自定义标签,jsp调用java类
查看>>
2017-12 CDQZ集训(已完结)
查看>>
10.0.4_CentOS_120g_for_Qt5.3.2
查看>>
题画【沙枣树】
查看>>
2017暑假 第三周 学习总结(复习)
查看>>
Oracle --- 也来谈谈分页
查看>>
在mac中导入hadoop2.6.0源代码至eclipse 分类: A1_H...
查看>>
[UIImageView]Frame Rectangles
查看>>
Codeforces 787D. Legacy 线段树优化建图+最短路
查看>>
大杂烩 -- Iterator 并发修改异常ConcurrentModificationException
查看>>
c++实现双链表
查看>>