CF1560C.Infinity Table

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp has found a table having an infinite number of rows and columns. The rows are numbered from 11 , starting from the topmost one. The columns are numbered from 11 , starting from the leftmost one.

Initially, the table hasn't been filled and Polycarp wants to fix it. He writes integers from 11 and so on to the table as follows.

The figure shows the placement of the numbers from 11 to 1010 . The following actions are denoted by the arrows.The leftmost topmost cell of the table is filled with the number 11 . Then he writes in the table all positive integers beginning from 22 sequentially using the following algorithm.

First, Polycarp selects the leftmost non-filled cell in the first row and fills it. Then, while the left neighbor of the last filled cell is filled, he goes down and fills the next cell. So he goes down until the last filled cell has a non-filled neighbor to the left (look at the vertical arrow going down in the figure above).

After that, he fills the cells from the right to the left until he stops at the first column (look at the horizontal row in the figure above). Then Polycarp selects the leftmost non-filled cell in the first row, goes down, and so on.

A friend of Polycarp has a favorite number kk . He wants to know which cell will contain the number. Help him to find the indices of the row and the column, such that the intersection of the row and the column is the cell containing the number kk .

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. Then tt test cases follow.

Each test case consists of one line containing one integer kk ( 1k1091 \le k \le 10^9 ) which location must be found.

输出格式

For each test case, output in a separate line two integers rr and cc ( r,c1r, c \ge 1 ) separated by spaces — the indices of the row and the column containing the cell filled by the number kk , respectively.

输入输出样例

  • 输入#1

    7
    11
    14
    5
    4
    1
    2
    1000000000

    输出#1

    2 4
    4 3
    1 3
    2 1
    1 1
    1 2
    31623 14130
首页