Cod sursa(job #2353904)
Utilizator | Data | 24 februarie 2019 18:16:10 | |
---|---|---|---|
Problema | Factorial | Scor | 15 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.62 kb |
#include <bits/stdc++.h>
#define PMAX 21000000000
#define LL long long int
using namespace std;
ifstream f ("fact.in");
ofstream g ("fact.out");
int n;
LL nz(LL x){
LL p = 5 , rez = 0;
while(p <= x)
{
rez += x/p;
p = p * 5;
}
return rez;
}
LL cb(){
LL st = 1 , dr = PMAX , mij = 0 , mini = -1;
while(st <= dr)
{
mij = st + (dr - st) / 2;
if(nz(mij) == n)
{
return mij - mij % 5;
}
else st = mij + 1;
}
return -1;
}
int main()
{
f >> n;
if(n == 0)g << 1;
else g << cb();
return 0;
}