Dado un número entero N y una secuencia (1), (3, 5), (7, 9, 11), (13, 15, 17, 19),….. la tarea es encontrar la suma de todos los números en N -ésimo paréntesis.
Ejemplos:
Entrada: N = 2
Salida: 8
3 + 5 = 8
Entrada: N = 3
Salida: 27
7 + 9 + 11 = 27
Planteamiento: Se puede observar que para los valores de N = 1, 2, 3,… se formará una serie como 1, 8, 27, 64, 125, 216, 343,… cuyo término N -ésimo es N 3
Abajo es la implementación del enfoque anterior:
C++
// C++ implementation of the approach #include <bits/stdc++.h> using namespace std; // Function to return the sum of the // numbers in the nth parenthesis int findSum(int n) { return pow(n, 3); } // Driver code int main() { int n = 3; cout << findSum(n); return 0; }
Java
// Java implementation of the approach class GFG { // Function to return the sum of the // numbers in the nth parenthesis static int findSum(int n) { return (int)Math.pow(n, 3); } // Driver code public static void main(String[] args) { int n = 3; System.out.println(findSum(n)); } } // This code is contributed by Code_Mech
Python3
# Python3 implementation of the approach # Function to return the sum of the # numbers in the nth parenthesis def findSum(n) : return n ** 3; # Driver code if __name__ == "__main__" : n = 3; print(findSum(n)); # This code is contributed by AnkitRai01
C#
// C# implementation of the approach using System; class GFG { // Function to return the sum of the // numbers in the nth parenthesis static int findSum(int n) { return (int)Math.Pow(n, 3); } // Driver code public static void Main(String[] args) { int n = 3; Console.WriteLine(findSum(n)); } } // This code is contributed by 29AjayKumar
Javascript
<script> // Javascript implementation of the approach // Function to return the sum of the // numbers in the nth parenthesis function findSum(n) { return Math.pow(n, 3); } // Driver code var n = 3; document.write(findSum(n)); </script>
Producción:
27
Complejidad de tiempo: O(1)
Espacio Auxiliar: O(1)