Dado un entero X , la tarea es encontrar los posibles valores de Q para el par (Q, R) tales que su producto sea igual a X por su suma, donde Q ≤ R y X < 10 7 . Imprima el recuento total de dichos valores de Q junto con los valores.
Ejemplos:
Entrada: X = 3
Salida:
2
4, 6
Explicación:
Al tomar Q = 4 y R = 12,
LHS = 12 x 4 = 48
RHS = 3(12 + 4) = 3 x 16 = 48 = LHS
De manera similar, la ecuación también vale para el valor Q = 6 y R = 6.
LHS = 6 x 6 = 36
RHS = 3(6 + 6) = 3 x 12 = 36 = LHSEntrada: X = 16
Salida:
5
17, 18, 20, 24, 32
Explicación:
Si Q = 17 y R = 272,
LHS = 17 x 272 = 4624
RHS = 16(17 + 272) = 16(289) = 4624 = LHS.
De manera similar, existe un valor R para todos los demás valores de Q dados en la salida.
Planteamiento: La idea es entender la pregunta para formar una ecuación, es decir (Q x R) = X(Q + R).
- La idea es iterar de 1 a X y verificar cada if ((( X + i ) * X) % i ) == 0 .
- Inicialice un vector resultante e itere para todos los valores de X desde 1.
- Compruebe si la condición anterior se cumple. Si es así, empuje el valor X+i en el vector.
- Vamos a romper la ecuación para entenderla más claramente,
La expresión dada es (Q x R) = X(Q + R)
Al simplificar esto obtenemos,
=> QR – QX = RX
o, QR – RX = QX
o, R = QX / (Q – X)
- Por lo tanto, observe que (X+i) es el valor posible de Q y (X+i)*X es el valor posible de R.
A continuación se muestra la implementación del enfoque anterior:
C++
// C++ program for the above approach #include <bits/stdc++.h> using namespace std; // Function to find all possible values of Q void values_of_Q(int X) { // Vector initialization // to store all numbers // satisfying the given condition vector<int> val_Q; // Iterate for all the values of X for (int i = 1; i <= X; i++) { // Check if condition satisfied // then push the number if ((((X + i) * X)) % i == 0) { // Possible value of Q val_Q.push_back(X + i); } } cout << val_Q.size() << endl; // Print all the numbers for (int i = 0; i < val_Q.size(); i++) { cout << val_Q[i] << " "; } } // Driver code int main() { int X = 3; values_of_Q(X); return 0; }
Java
// Java program for the above approach import java.util.*; class GFG{ // Function to find all possible values of Q static void values_of_Q(int X) { // Vector initialization // to store all numbers // satisfying the given condition ArrayList<Integer> val_Q = new ArrayList<Integer>(); // Iterate for all the values of X for (int i = 1; i <= X; i++) { // Check if condition satisfied // then push the number if ((((X + i) * X)) % i == 0) { // Possible value of Q val_Q.add(X + i); } } System.out.println(val_Q.size()); // Print all the numbers for (int i = 0; i < val_Q.size(); i++) { System.out.print(val_Q.get(i)+" "); } } // Driver code public static void main(String[] args) { int X = 3; values_of_Q(X); } } // This code is contributed by Ritik Bansal
Python3
# Python3 program for the above approach # Function to find all possible values of Q def values_of_Q(X): # Vector initialization # to store all numbers # satisfying the given condition val_Q = [] # Iterate for all the values of X for i in range(1, X + 1): # Check if condition satisfied # then push the number if ((((X + i) * X)) % i == 0): # Possible value of Q val_Q.append(X + i) print(len(val_Q)) # Print all the numbers for i in range(len(val_Q)): print(val_Q[i], end = " ") # Driver Code X = 3 values_of_Q(X) # This code is contributed by divyeshrabadiya07
C#
// C# program for the above approach using System; using System.Collections.Generic; class GFG{ // Function to find all possible // values of Q static void values_of_Q(int X) { // List initialization // to store all numbers // satisfying the given condition List<int> val_Q = new List<int>(); // Iterate for all the values of X for(int i = 1; i <= X; i++) { // Check if condition satisfied // then push the number if ((((X + i) * X)) % i == 0) { // Possible value of Q val_Q.Add(X + i); } } Console.WriteLine(val_Q.Count); // Print all the numbers for(int i = 0; i < val_Q.Count; i++) { Console.Write(val_Q[i] + " "); } } // Driver code public static void Main(String[] args) { int X = 3; values_of_Q(X); } } // This code is contributed by Amit Katiyar
Javascript
<script> // Javascript program for the above approach // Function to find all possible values of Q function values_of_Q(X) { // Vector initialization // to store all numbers // satisfying the given condition let val_Q = []; // Iterate for all the values of X for (let i = 1; i <= X; i++) { // Check if condition satisfied // then push the number if ((((X + i) * X)) % i == 0) { // Possible value of Q val_Q.push(X + i); } } document.write(val_Q.length + "</br>"); // Print all the numbers for (let i = 0; i < val_Q.length; i++) { document.write(val_Q[i] + " "); } } let X = 3; values_of_Q(X); // This code is contributed by divyesh072019. </script>
2 4 6
Complejidad de tiempo: O(N)
Espacio Auxiliar: O(X)
Publicación traducida automáticamente
Artículo escrito por mishrapriyanshu557 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA