PROBLEM LINK:
Practice
Contest
Author: Arkapravo Ghosh
Editorialist: Arkapravo Ghosh
DIFFICULTY:
EASY
PREREQUISITES:
Math Triangular Number
PROBLEM:
The problem asks to find out the no. of elements in one side of the triangle formed from the total no. of unit elements. Simultaneously, the total user input number needs to check if it is a triangle number or not.
EXPLANATION:
The square root of n, one can define the (positive) triangular root of n as the number x such that Tx = n.
x can be calculated by this: x = (sqrt(8*n+1)-1)/2
which follows immediately from the quadratic formula. So an integer n is triangular if and only if 8n + 1 is a square. Equivalently, if the positive triangular root x of n is an integer, then n is the xth triangular number.
AUTHOR’S AND TESTER’S SOLUTIONS:
Author’s solution can be found here