Geometric Progression Subsequences Problem Statement
Given an array of ‘N’ integers, determine the number of subsequences of length 3 that form a geometric progression with a specified common ratio ‘R’.
Explanation:
A geometric progression (GP) or sequence is characterized by numbers that differ by a common ratio, such as 2, 4, 8, 16 with common ratio 2.
Note:
Return the answer modulo 109 + 7, as the result may be very large.
Input:
The first line contains an integer T denoting the number of test cases.
For each test case, the first line shows two integers N and R, the number of elements in the array and the common ratio.
The second line of each test case comprises N space-separated integers representing the array elements.
Output:
For each test case, print the number of subsequences of length 3 having the common ratio R.
Example:
Input:
T = 1
N = 4, R = 2
Array = [2, 4, 8, 16]
Output:
1
Constraints:
- 1 <= T <= 50
- 3 <= N <= 104
- 1 <= R <= 104
- 1 <= A[i] <= 109
- Time Limit: 1 sec

AnswerBot
4mo
Count the number of subsequences of length 3 forming a geometric progression with a specified common ratio in an array of integers.
Iterate through the array and for each element, check for possible su...read more
Help your peers!
Add answer anonymously...
Paytm Software Engineer interview questions & answers
A Software Engineer was asked 7mo agoQ. Given an m x n matrix, where each row and each column is sorted in ascending ord...read more
A Software Engineer was asked 9mo agoQ. Explain the internal workings of a hashmap.
A Software Engineer was asked 9mo agoQ. Given head, the head of a linked list, determine if the linked list has a cycle ...read more
Popular interview questions of Software Engineer
A Software Engineer was asked 7mo agoQ1. Given an m x n matrix, where each row and each column is sorted in ascending ord...read more
A Software Engineer was asked 9mo agoQ2. Explain the internal workings of a hashmap.
A Software Engineer was asked 9mo agoQ3. Given head, the head of a linked list, determine if the linked list has a cycle ...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

