Count trailing zeroes in factorial of a number
Given an integer n, write a function that returns count of trailing zeroes in n!.
Examples :
Input: n = 5 Output: 1 Factorial of 5 is 120 which has one trailing 0. Input: n = 20 Output: 4 Factorial of 20 is 2432902008176640000 which has 4 trailing zeroes. Input: n = 100 Output: 24
We strongly recommend that you click here and practice it, before moving on to the solution.
- Approach:
A simple method is to first calculate factorial of n, then count trailing 0s in the result (We can count trailing 0s by repeatedly dividing the factorial by 10 till the remainder is 0).
- The above method can cause overflow for slightly bigger numbers as the factorial of a number is a big number (See factorial of 20 given in above examples). The idea is to consider prime factors of a factorial n. A trailing zero is always produced by prime factors 2 and 5. If we can count the number of 5s and 2s, our task is done. Consider the following examples.
n = 5: There is one 5 and 3 2s in prime factors of 5! (2 * 2 * 2 * 3 * 5). So a count of trailing 0s is 1.
n = 11: There are two 5s and eight 2s in prime factors of 11! (2 8 * 34 * 52 * 7). So the count of trailing 0s is 2.
- We can easily observe that the number of 2s in prime factors is always more than or equal to the number of 5s. So if we count 5s in prime factors, we are done. How to count the total number of 5s in prime factors of n!? A simple way is to calculate floor(n/5). For example, 7! has one 5, 10! has two 5s. It is not done yet, there is one more thing to consider. Numbers like 25, 125, etc have more than one 5. For example, if we consider 28! we get one extra 5 and the number of 0s becomes 6. Handling this is simple, first, divide n by 5 and remove all single 5s, then divide by 25 to remove extra 5s, and so on. Following is the summarized formula for counting trailing 0s.
Trailing 0s in n! = Count of 5s in prime factors of n! = floor(n/5) + floor(n/25) + floor(n/125) + ....
Following is a program based on the above formula:
C++
// C++ program to count // trailing 0s in n! #include <iostream> using namespace std; // Function to return trailing // 0s in factorial of n int findTrailingZeros( int n) { // Initialize result int count = 0; // Keep dividing n by powers of // 5 and update count for ( int i = 5; n / i >= 1; i *= 5) count += n / i; return count; } // Driver Code int main() { int n = 100; cout << "Count of trailing 0s in " << 100 << "! is " << findTrailingZeros(n); return 0; } |
Java
// Java program to count // trailing 0s in n! import java.io.*; class GFG { // Function to return trailing // 0s in factorial of n static int findTrailingZeros( int n) { // Initialize result int count = 0 ; // Keep dividing n by powers // of 5 and update count for ( int i = 5 ; n / i >= 1 ; i *= 5 ) count += n / i; return count; } // Driver Code public static void main (String[] args) { int n = 100 ; System.out.println( "Count of trailing 0s in " + n + "! is " + findTrailingZeros(n)); } } // This code is contributed by Pramod Kumar |
Python3
# Python3 program to # count trailing 0s # in n! # Function to return # trailing 0s in # factorial of n def findTrailingZeros(n): # Initialize result count = 0 # Keep dividing n by # 5 & update Count while (n > = 5 ): n / / = 5 count + = n return count # Driver program n = 100 print ( "Count of trailing 0s " + "in 100! is" , findTrailingZeros(n)) # This code is contributed by Uttam Singh |
C#
// C# program to count // trailing 0s in n! using System; class GFG { // Function to return trailing // 0s in factorial of n static int findTrailingZeros( int n) { // Initialize result int count = 0; // Keep dividing n by powers // of 5 and update count for ( int i = 5; n / i >= 1; i *= 5) count += n / i; return count; } // Driver Code public static void Main () { int n = 100; Console.WriteLine( "Count of trailing 0s in " + n + "! is " + findTrailingZeros(n)); } } // This code is contributed by vt_m |
PHP
<?php // PHP program to count // trailing 0s in n! // Function to return trailing // 0s in factorial of n function findTrailingZeros( $n ) { // Initialize result $count = 0; // Keep dividing n by powers // of 5 and update count for ( $i = 5; $n / $i >= 1; $i *= 5) $count += $n / $i ; return $count ; } // Driver Code $n = 100; echo "Count of trailing 0s in " , 100, "! is " , findTrailingZeros( $n ); // This code is contributed by vt_m ?> |
Javascript
<script> // JavaScript program to count // trailing 0s in n! // Function to return trailing // 0s in factorial of n function findTrailingZeros(n) { // Initialize result let count = 0; // Keep dividing n by powers of // 5 and update count for (let i = 5; Math.floor(n / i) >= 1; i *= 5) count += Math.floor(n / i); return count; } // Driver Code let n = 100; document.write( "Count of trailing 0s in " + 100 + "! is " + findTrailingZeros(n)); // This code is contributed by Surbhi Tyagi </script> |
Output :
Count of trailing 0s in 100! is 24
This article is contributed by Rahul Jain. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.