5917. Factorial length
Problem code: LENGFACT
Q.) FIND THE LENGTH OF FACTORIAL.
SOLUTION---
#include<stdio.h>
#include<math.h>
int main()
{
int t;
long long int ans,n;
scanf("%d",&t);
while(t--)
{
ans=0;
scanf("%lld",&n);
if(n<3)
printf("1\n");
else{
ans=ceil(log10(2*3.141592653589793*n)/2 + n*log10(n/2.7182818284590452353));
printf("%lld\n",ans);
}
}
return 0;
}
hello...
ReplyDeletemay I ask about this problem ?
http://www.spoj.com/problems/EPTT/
this is my code, but still get WA :(
http://ideone.com/QF6fsp