To the 51nod new UI to do the problem, by the way, here are 2 factorial questions,
1003 factorial back 0 of the number
How many 0 are behind the factorial of n? The factorial of 6 = 1*2*3*4*5*6 = 720,720 is followed by a 0. Input
A number n (1 <= n <= 10^9)
OutPut
Number of outputs 0
Input example
5
Output example
1
The first reaction to this question is, is this not a regular one?
Well, really, the question is, how does the 0 at the end constitute, think about it, or can think of it, is 5 and the other even multiplied to get, so go on, is not as long as the number of factor 5 is good? Indeed, since the factorial of 1~n, there are even numbers before encountering multiples of 5, as follows:
1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ..... 5n-1, 5n .... N
Before 5 there were even 2 and 4,10 preceded by even 6 and 8, so that each 5n before an even number can be made with it to form a 0 at the end of the factorial, the 5n extracted, you can get 5^k * k! (k = N/5), so that you can get K 5 first, and then recursively seek k! In 5 of the number, you can find out the number of factor 5, OK, on the code:
#include <iostream>using namespace Std;int main () { int a, ans = 0; Cin >> A; while (a) { a/= 5; ans + = A; } cout << ans; return 0;}
I wrote a recursive so that I could get AC.
1008 N's factorial mod p input n and p (p is prime), N! Mod P =? (Mod is modulo%) For example: n = ten, P = 11,10! = 36288003628800% = 10Input
Two number n,p, separated by a space in the middle. (N < 10000, P < 10^9)
OutPut
Output n! The result of mod p.
Input example
10 11
Output example
10
See this question, just think factorial can calculate, if n equals 9999, n! is very large, will overflow, with a large number to simulate is also very troublesome, drunk, OK, Internet search, take the mold operation is regular, wherein, there is a law is such,(A * b)% P = (a% p * b% p)% p
I think, how does this rule not see in elementary school ... Well, through this rule, you can launch: N! % P = ((N-1)! % p) * N p that is, in the case of N-1 factorial, you can find the modulus, and then save the remainder, the next round can be multiplied by the remainder of N, and then to find the modulo, the result of the factorial modulo P of N, the code is as follows:
#include <iostream>using namespace Std;int main () { long long N, P, ans = 1; CIN >> N >> P; For (long long i = 2; I <= N; i++) { ans = (ans * i)% P; if (ans = = 0) break; } cout << ans; return 0;}
If you use int here, it can't be passed.
Algorithm problem of 2-channel factorial