Primes 3

View as PDF

Submit solution

Points: 15 (partial)
Time limit: 1.0s
Memory limit: 16M

Author:
Problem type
Allowed languages
Assembly, Brain****, C, C++, COBOL, Forth, Fortran, Lua, Text, Turing

Given T (1 \le T \le 100) positive integers, one per line, determine whether each one is prime. The integers will be no greater than 2^{63}-1.

The first line of input will be the integer T. The next T lines each contain a number to be tested.

For each of the T integers, you should output on a separate line PRIME if the corresponding integer is prime, or NOT if it is not prime.

Sample Input

5
1
2
6
11
1000000000000000000

Sample Output

NOT
PRIME
NOT
PRIME
NOT

Comments

There are no comments at the moment.