大数阶乘1000级别 51Nod 1057

题目链接

51Nod 1057

问题描述

输入N求N的阶乘的准确值。

Input

输入N(1 <= N <= 10000)

Output

输出N的阶乘

Input示例

5

Output示例

120

思路:

一百万亿进制(14个0),大数相乘,求阶乘

代码

#include<iostream>
#include<stdio.h>
#include<algorithm>
#define LL long long
using namespace std;
#define mod 100000000000000;//14个0
const int N = 1000086;
LL a[N]; 

int main()
{
    int n;
    scanf("%d",&n);
    LL l = 0;
    a[0] = 1;

    for(int i = 1; i <= n; i++)
    {
        LL c = 0;
        for(int j = 0; j <= l; j++)
        {
            LL t = a[j] * i + c;
            a[j] = t % mod;
            c = t / mod;
        }
        if(c != 0)
        {
            L++;
            a[l] = c;
        }
    }
    printf("%lld",a[l]);

    for(int i = l-1; i >= 0; i--)
    {
        printf("%014lld",a[i]);//保留前导0
    }
    return 0;
}

相关文章

自1998年我国取消了福利分房的政策后,房地产市场迅速开展蓬...
文章目录获取数据查看数据结构获取数据下载数据可以直接通过...
网上商城系统MySql数据库设计
26个来源的气象数据获取代码
在进入21世纪以来,中国电信业告别了20世纪最后阶段的高速发...