CF1846E2.Rudolf and Snowflakes (hard version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is the hard version of the problem. The only difference is that in this version n1018n \le 10^{18} .

One winter morning, Rudolf was looking thoughtfully out the window, watching the falling snowflakes. He quickly noticed a certain symmetry in the configuration of the snowflakes. And like a true mathematician, Rudolf came up with a mathematical model of a snowflake.

He defined a snowflake as an undirected graph constructed according to the following rules:

  • Initially, the graph has only one vertex.
  • Then, more vertices are added to the graph. The initial vertex is connected by edges to kk new vertices ( k>1k > 1 ).
  • Each vertex that is connected to only one other vertex is connected by edges to kk more new vertices. This step should be done at least once.

The smallest possible snowflake for k=4k = 4 is shown in the figure.

After some mathematical research, Rudolf realized that such snowflakes may not have any number of vertices. Help Rudolf check whether a snowflake with nn vertices can exist.

输入格式

The first line of the input contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Then follow the descriptions of the test cases.

The first line of each test case contains an integer nn ( 1n10181 \le n \le 10^{18} ) — the number of vertices for which it is necessary to check the existence of a snowflake.

输出格式

Output tt lines, each of which is the answer to the corresponding test case — "YES" if there exists such k>1k > 1 that a snowflake with the given number of vertices can be constructed; "NO" otherwise.

输入输出样例

  • 输入#1

    9
    1
    2
    3
    6
    13
    15
    255
    10101
    1000000000000000000

    输出#1

    NO
    NO
    NO
    NO
    YES
    YES
    YES
    YES
    NO
首页