CANTON - Count on Cantor

One of the famous proofs of modern mathematics is Georg Cantor's demonstration that the set of rational numbers is enumerable. The proof works by using an explicit enumeration of rational numbers as shown in the diagram below.

1/1 1/2 1/3 1/4 1/5 ...
2/1 2/2 2/3 2/4
3/1 3/2 3/3
4/1 4/2
5/1

In the above diagram, the first term is 1/1, the second term is 1/2, the third term is 2/1, the fourth term is 3/1, the fifth term is 2/2, and so on.

Input

The input starts with a line containing a single integer t <= 20, the number of test cases. t test cases follow.

Then, it contains a single number per line.

Output

You are to write a program that will read a list of numbers in the range from 1 to 10^7 and will print for each number the corresponding term in Cantor's enumeration as given below.

Example

Input:
3
3
14
7

Output:
TERM 3 IS 2/1
TERM 14 IS 2/4
TERM 7 IS 1/4

Added by:Thanh-Vy Hua
Date:2005-02-27
Time limit:5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6 VB.NET
Resource: ACM South Eastern European Region 2004

hide comments
2015-06-06 17:26:01 bholagabbar
This is actually a pretty decent question. Great constraints. Won't allow brute force preprocessing. You'll have to figure the (easy) pattern
2015-06-02 09:45:53 Sourabh Bhagat
For better explanation (Arrows are opposite) : http://en.wikipedia.org/wiki/File:Diagonal_argument.svg


Last edit: 2015-06-02 09:49:21
2015-06-01 19:24:41 nitinrahul jalla
Perfect example for Logic based problems!!!! Learnt a lot....
2015-05-26 08:25:25 karnav kikani
It might seem a bit typical at first, but if u get the pattern it is damn easy
2015-04-17 01:53:19 Prasanna Patil
Silly Mistakes Cause WA
Observe the series carefully..
2015-04-06 03:56:19 sarvagya
AC in 1st attempt. My 25th problem .
2015-04-01 05:04:12 Tony T.
Need to know a couple of equations on triangular numbers. The rest is just conceptualising how the terms move along the diagonal.
2015-03-05 22:29:57 NESTOR IGNACIO BERNAL MORALES
Yeah
2015-02-06 23:10:15 Yash
AC in 1st go :) My 75th on spoj :)
2015-01-29 06:58:45 Pratik
How is third term not 1/3
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.