站长网 大数据 大数阶乘(1000级别) 51Nod 1057

大数阶乘(1000级别) 51Nod 1057

题目链接: 51Nod 1057 问题描述 输入N求N的阶乘的准确值。 Input 输入N(1 = N = 10000) Output 输出N的阶乘 Input示例 5 Output示例 120 思路: 一百万亿进制(14个0),大数相乘,求阶乘 代码: #includeiostream#includestdio.h#includealgorithm#define

题目链接:

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;
}

本文来自网络,不代表站长网立场,转载请注明出处:https://www.tzzz.com.cn/html/shuju/2021/0526/6754.html

作者: dawei

【声明】:站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。
联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部