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

51NOD 1057 N的阶乘

时间:2017-08-06 17:01:12      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:限制   out   c++   item   ref   line   hid   ems   main   

基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题
 
输入N求N的阶乘的准确值。
 
Input
输入N(1 <= N <= 10000)
Output
输出N的阶乘
Input示例
5
Output示例
120

技术分享
#include <bits/stdc++.h>
#define clear(a) memset(a,0,sizeof(a))
using namespace std;
typedef long long ll;
const int mod = 1e8;
ll s[10010];

int main ()
{
    int n;
    while (~scanf("%d",&n) )
    {
        clear(s);
        int m =0;
        s[0] = 1;
        for(int i=1;i <= n;i++)
        {
            int c = 0;//c表示最高位所留下的  相当于模拟乘法把
            for(int j=0;j <= m;j++)
            {
                s[j] = s[j]*i + c;
                c = s[j] /mod;
                s[j] %= mod;
            }
            if(c > 0)
            {
                m++;
                s[m] = c;
            }
        }
        printf("%lld",s[m]);
        for(int i=m-1;i >= 0;i--)
            printf("%08lld",s[i]);
        puts("");
    }
    return 0;
}
阶乘模拟

 

51NOD 1057 N的阶乘

标签:限制   out   c++   item   ref   line   hid   ems   main   

原文地址:http://www.cnblogs.com/Draymonder/p/7295053.html

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