Right-Coupled Numbers

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

An integer x is said to be a right-coupled number, if you can find two integers, say 0 < a ≤ b ≤ x such that a × b = x and a/b ≥ 0.5. In this problem, your task is to determine whether a given integer is a right-coupled number or not.

입력

The first line of the input is an integer N denoting the number of test cases. Each test case is in one line, which contains a single integer 0 < x < 215.

출력

If the given integer x is a right-coupled number, output 1; otherwise, output 0. Each is in a single line.

제한

  • 1 ≤ N ≤ 1000
  • 0 < x < 215