Wednesday, July 3, 2024
HomeData ModellingData Structure & AlgorithmCount of numbers from the range which contains at least one...

Count of numbers from the range [L, R] which contains at least one digit that divides K

Given three positive integers L, R and K.The task is to find the count of all the numbers from the range [L, R] that contains at least one digit which divides the number K.

Examples: 

Input: L = 5, R = 11, K = 10 
Output:
5, 10 and 11 are only such numbers.

Input: L = 32, R = 38, K = 13 
Output:
 

Approach: Initialise count = 0 and for every element in the range [L, R], check if it contains at least one digit that divides K. If yes then increment the count.

Below is the implementation of the above approach:  

C++




// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
 
// Function that returns true if num
// contains at least one digit
// that divides k
bool digitDividesK(int num, int k)
{
    while (num) {
 
        // Get the last digit
        int d = num % 10;
 
        // If the digit is non-zero
        // and it divides k
        if (d != 0 and k % d == 0)
            return true;
 
        // Remove the last digit
        num = num / 10;
    }
 
    // There is no digit in num
    // that divides k
    return false;
}
 
// Function to return the required
// count of elements from the given
// range which contain at least one
// digit that divides k
int findCount(int l, int r, int k)
{
 
    // To store the result
    int count = 0;
 
    // For every number from the range
    for (int i = l; i <= r; i++) {
 
        // If any digit of the current
        // number divides k
        if (digitDividesK(i, k))
            count++;
    }
    return count;
}
 
// Driver code
int main()
{
    int l = 20, r = 35;
    int k = 45;
 
    cout << findCount(l, r, k);
 
    return 0;
}


Java




// Java implementation of the approach
 
class GFG
{
    // Function that returns true if num
    // contains at least one digit
    // that divides k
    static boolean digitDividesK(int num, int k)
    {
        while (num != 0)
        {
     
            // Get the last digit
            int d = num % 10;
     
            // If the digit is non-zero
            // and it divides k
            if (d != 0 && k % d == 0)
                return true;
     
            // Remove the last digit
            num = num / 10;
        }
     
        // There is no digit in num
        // that divides k
        return false;
    }
     
    // Function to return the required
    // count of elements from the given
    // range which contain at least one
    // digit that divides k
    static int findCount(int l, int r, int k)
    {
     
        // To store the result
        int count = 0;
     
        // For every number from the range
        for (int i = l; i <= r; i++)
        {
     
            // If any digit of the current
            // number divides k
            if (digitDividesK(i, k))
                count++;
        }
        return count;
    }
     
    // Driver code
    public static void main(String []args)
    {
        int l = 20, r = 35;
        int k = 45;
     
        System.out.println(findCount(l, r, k));
    }
}
 
// This code is contributed by PrinciRaj1992


Python3




# Python3 implementation of the approach
 
# Function that returns true if num
# contains at least one digit
# that divides k
def digitDividesK(num, k):
    while (num):
 
        # Get the last digit
        d = num % 10
 
        # If the digit is non-zero
        # and it divides k
        if (d != 0 and k % d == 0):
            return True
 
        # Remove the last digit
        num = num // 10
 
    # There is no digit in num
    # that divides k
    return False
 
# Function to return the required
# count of elements from the given
# range which contain at least one
# digit that divides k
def findCount(l, r, k):
 
    # To store the result
    count = 0
 
    # For every number from the range
    for i in range(l, r + 1):
 
        # If any digit of the current
        # number divides k
        if (digitDividesK(i, k)):
            count += 1
 
    return count
 
# Driver code
l = 20
r = 35
k = 45
 
print(findCount(l, r, k))
 
# This code is contributed by Mohit Kumar


C#




// C# implementation of the approach
using System;
 
class GFG
{
    // Function that returns true if num
    // contains at least one digit
    // that divides k
    static bool digitDividesK(int num, int k)
    {
        while (num != 0)
        {
     
            // Get the last digit
            int d = num % 10;
     
            // If the digit is non-zero
            // and it divides k
            if (d != 0 && k % d == 0)
                return true;
     
            // Remove the last digit
            num = num / 10;
        }
     
        // There is no digit in num
        // that divides k
        return false;
    }
     
    // Function to return the required
    // count of elements from the given
    // range which contain at least one
    // digit that divides k
    static int findCount(int l, int r, int k)
    {
     
        // To store the result
        int count = 0;
     
        // For every number from the range
        for (int i = l; i <= r; i++)
        {
     
            // If any digit of the current
            // number divides k
            if (digitDividesK(i, k))
                count++;
        }
        return count;
    }
     
    // Driver code
    public static void Main()
    {
        int l = 20, r = 35;
        int k = 45;
     
        Console.WriteLine(findCount(l, r, k));
    }
}
 
// This code is contributed by AnkitRai01


Javascript




<script>
 
// Javascript implementation of the approach
 
// Function that returns true if num
// contains at least one digit
// that divides k
function digitDividesK(num, k)
{
    while (num)
    {
         
        // Get the last digit
        let d = num % 10;
 
        // If the digit is non-zero
        // and it divides k
        if (d != 0 && k % d == 0)
            return true;
 
        // Remove the last digit
        num = parseInt(num / 10);
    }
 
    // There is no digit in num
    // that divides k
    return false;
}
 
// Function to return the required
// count of elements from the given
// range which contain at least one
// digit that divides k
function findCount(l, r, k)
{
 
    // To store the result
    let count = 0;
 
    // For every number from the range
    for(let i = l; i <= r; i++)
    {
         
        // If any digit of the current
        // number divides k
        if (digitDividesK(i, k))
            count++;
    }
    return count;
}
 
// Driver code
let l = 20, r = 35;
let k = 45;
 
document.write(findCount(l, r, k));
 
// This code is contributed by souravmahato348
 
</script>


Output: 

10

 

Time Complexity: O((r-l)*(log10(num)))
Auxiliary Space: O(1)

Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!

Ted Musemwa
As a software developer I’m interested in the intersection of computational thinking and design thinking when solving human problems. As a professional I am guided by the principles of experiential learning; experience, reflect, conceptualise and experiment.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments