列表

详情


NC215093. 阶乘的位数

描述

在你的帮助下,小财发现了自己的读音确实不标准,他想找小金道歉。
正好你知道小金遇到了一个难题,你便告诉了小财这个难题,小财想了想发现他也不会,小财只好再次拜托你来解决这个问题。

这个难题是:
求N的阶乘的10进制表示的长度。例如6! = 720,长度为3。

下边就是你的表演时间了~~

输入描述

一个整数 N(0 <= N <= 100000)。

输出描述

输出N的阶乘(即n!)的长度。

示例1

输入:

1

输出:

1

示例2

输入:

1000

输出:

2568

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

C++(clang++11) 解法, 执行用时: 8ms, 内存消耗: 504K, 提交时间: 2021-01-22 14:52:14

#include<iostream>
#include<cmath>
using namespace std;
double sum=1;
int main()
{
	int n;
	cin>>n;
	while(n)
	{
		sum+=log10(n);
		n--;
	}
	cout<<(int)sum;
	return 0;
}

C(clang11) 解法, 执行用时: 9ms, 内存消耗: 376K, 提交时间: 2020-12-17 19:33:16

#include<stdio.h>
#include<math.h>
int main(){
	int N;
	double len=1;
	scanf("%d",&N);
	for(int i=1;i<=N;i++){
		len+=log10(i);
	}
	printf("%d",(int)len);
	return 0;
} 

Python3 解法, 执行用时: 42ms, 内存消耗: 4568K, 提交时间: 2022-11-22 17:16:16

import math
n=int(input())
if n>0:
    ss = 0.5*math.log10(2*math.pi*n)+n*math.log10(n/math.e)
    print(int(ss)+1)
else:
    print(1)

上一题