QOJ.ac

QOJ

Time Limit: 1.0 s Memory Limit: 1024 MB Total points: 100 Hackable ✓

#249. Primality Test

统计

Given an integer $N$, you need to test whether $N$ is a prime number.

Input

There are multiple test cases. The first line of the input contains a single integer $T$ ($1 \le T \le 10^5$), indicating the number of test cases.

For each test case, the first line of the input contains a single integer $N$ ($1 \le N \le 10^{18}$).

Output

For each test case, if the number $N$ is a prime number, output a single line with a single word Yes. Otherwise, output a single line with a single word No.

Examples

Input

5
1
2
3
4
5

Output

No
Yes
Yes
No
Yes

Scoring

For all test cases, $1 \le T \le 10^5$, $1 \le N \le 10^{18}$.

  • Subtask 1 (10 points): $1 \le N \le 10^5$
  • Subtask 2 (30 points): $1 \le N \le 10^9$
  • Subtask 3 (60 points): No additional constraints.
About Issues

We understand that our problem archive is not perfect. If you find any issues with the problem, including the statement, scoring configuration, time/memory limits, test cases, etc.

You may use this form to submit an issue regarding the problem. A problem moderator will review your issue and proceed it properly.

STOP! Before you submit an issue, please READ the following guidelines:

  1. This is not a place to publish a discussion, editorial, or requests to debug your code. Your issue will only be visible by you and problem moderators. Other users will not be able to view or reply your issues.
  2. Do not submit duplicated issues. If you have already submitted one, please wait for an moderator to review it. Submitting multiple issues will not speed up the review process and might cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
  4. Be sure your issue is related to this problem. If you need to submit an issue regarding another problem, contest, category, etc., you should submit it to the corresponding page.

Active Issues 0

No issues in this category.

Closed/Resolved Issues 0

No issues in this category.