51NOD 1057 N的阶乘

Posted Draymonder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51NOD 1057 N的阶乘相关的知识,希望对你有一定的参考价值。

基准时间限制: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的阶乘的主要内容,如果未能解决你的问题,请参考以下文章

51NOD 1057 N的阶乘

1057 N的阶乘(51NOD基础题)

51 Nod 1057 N的阶乘Java大数乱搞

51nod 1057 N的阶乘 (大数运算)

N的阶乘(10000) 51 nod——1057 (大数)

1057 N的阶乘(大数运算)