Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python3 Program to Count rotations which are divisible by 10

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Given a number N, the task is to count all the rotations of the given number which are divisible by 10.
Examples: 
 

Input: N = 10203 
Output:
Explanation: 
There are 5 rotations possible for the given number. They are: 02031, 20310, 03102, 31020, 10203 
Out of these rotations, only 20310 and 31020 are divisible by 10. So 2 is the output. 
Input: N = 135 
Output:
 

 

Naive Approach: The naive approach for this problem is to form all the possible rotations. It is known that for a number of size K, the number of possible rotations for this number N is K. Therefore, find all the rotations and for every rotation, check if the number is divisible by 10 or not. The time complexity for this approach is quadratic. 
Efficient Approach: The efficient approach lies behind the concept that in order to check whether a number is divisible by 10 or not, we simply check if the last digit is 0. So, the idea is to simply iterate over the given number and find the count of 0’s. If the count of 0’s is F, then clearly, F out of K rotations will have 0 at the end of the given number N
Below is the implementation of the above approach:
 

Python




# Python3 implementation to find the
# count of rotations which are
# divisible by 10
 
# Function to return the count of
# all rotations which are divisible
# by 10.
def countRotation(n):
    count = 0;
 
    # Loop to iterate through the
    # number
    while n > 0:
        digit = n % 10
 
        # If the last digit is 0,
        # then increment the count
        if(digit % 2 == 0):
            count = count + 1
        n = int(n / 10)
     
    return count;   
   
# Driver code 
if __name__ == "__main__" :
   
    n = 10203
    print(countRotation(n)); 

Output: 

2

 

Time Complexity: O(log10N), where N is the length of the number. 
Auxiliary Space: O(1)

Please refer complete article on Count rotations which are divisible by 10 for more details!

My Personal Notes arrow_drop_up
Last Updated : 31 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials