#include <iostream>
#include <cstdio>
#include <sys/time.h>
using namespace std;
int main()
{
timeval tv_start,tv_end;
gettimeofday(&tv_start,0);
// 为了不让键盘等待时间影响计时,如果输入较少,使用管道来输入
// echo 20 | ./a.out
//如果输入较多,可以使用重定向来输入。 编译时需带上 -DLOCAL
#ifdef LOCAL
if(!freopen("input.txt","r+",stdin)) //将stdin重定向到input.txt
{
perror("freopen");
}
if(!freopen("output.txt","w+",stdout)) //将stdout 重定向到output.txt
{
perror("freopen2");
}
#endif
const int MOD = 1000000;
int i , j ,n ,s = 0;
cout << i << " " << j << " " << n << endl;
//使用优化选项 -O1 或者 02 03时,i,j,n的值都被编译器设为0,而不是随机的大数
cin >> n;
if(n > 25) //优化,大于25以上到阶乘 后六位都是0
{
n = 25;
}
for(i=1;i<n+1;i++)
{
int f = 1;
for(j=1;j<i+1;j++)
{
f = (f*j)%MOD; //为了防止溢出
}
cout << "f = " << f <<endl;
s+=f;
}
cout << s%MOD << endl;
gettimeofday(&tv_end,0);
cout << static_cast<long>( (tv_end.tv_sec - tv_start.tv_sec)*1000 + tv_end.tv_usec - tv_start.tv_usec) << endl;
}
求阶乘之和的后六位--
最新推荐文章于 2022-04-19 19:04:39 发布