gpt4 book ai didi

java - 在 N 中找到第一个非零数!在 java

转载 作者:行者123 更新时间:2023-11-29 09:52:55 25 4
gpt4 key购买 nike

如何找到 N 的阶乘的第一个非零数。N 的范围可以从 1 到 2147483647。输出返回一个整数。

例如:

findFirstNoneZeroNumberOfTheFactorial(4) = 4; // because 4! = 24
findFirstNoneZeroNumberOfTheFactorial(5) = 2; // because 5! = 120

这是我的代码:

import java.math.BigInteger;

public class Solution {
public static int findFirstNoneZeroNumberOfTheFactorial(int n) {
BigInteger fact = null;
for (int i = 1; i <= n; i++) {
fact = fact.multiply(BigInteger.valueOf(i));
}
String sFact = String.valueOf(fact);
for (int i = sFact.length() - 1; i >= 0; i--) {
if (sFact.charAt(i) != '0') {
int result = Character.getNumericValue(sFact.charAt(i));
return result;
}
}
return 0;
}
public static void main(String[] args){
System.out.println(Solution.findFirstNoneZeroNumberOfTheFactorial(4));
}
}

但是它不起作用!!

最佳答案

你的初始化不正确。

BigInteger fact = BigInteger.ONE;

This is not optimal. If you just need the single last non-zero digit just keep track only the last non zero digit not the whole multiplied number.

let's do some math
x x! last-nonzero-digit(x * last-nonzero-digit)
1 1 1*1 => 1
2 2 2*1 = 2 => 2
3 6 3*2 = 6 => 6
4 24 6*4 = 2(4) => 4
5 120 4*5 = (2)0 => 2
6 720 2*6 = 1(2) => 2
7 5040 2*7 = 1(4) => 4

为什么我必须计算整个乘法?

只保留最后一个非零数字。

关于java - 在 N 中找到第一个非零数!在 java ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31135434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com