|
|||
SumsGiven an integer N, express it as the sum of at least two consecutive positive integers. For example:
If there are multiple solutions, output the one with the smallest possible number of summands. Input SpecificationThe first line of the input contains the number of test cases T. The descriptions of the test cases follow: Each test case consists of one line containing an integer N (1 ≤ N ≤ 109). Output SpecificationFor each test case, output a single line containing the equation in the format N = a + (a + 1) + … + b
as in the example. If there is no solution, output a single word
“ Sample Input
Output for Sample Input
Original Problem |
|||
University of Debrecen; Faculty of Informatics; v. 09/30/2024 |