print prime numbers is not accepted by codechef
I am trying to solve identify prime numbers from code chef
Alice and Bob are meeting after a long time. As usual they love to play some math games. This times Alice takes the call and decides the game. The game is very simple, Alice says out an integer and Bob has to say whether the number is prime or not. Bob as usual knows the logic but since Alice doesn't give Bob much time to think, so Bob decides to write a computer program.
Help Bob accomplish this task by writing a computer program which will calculate whether the number is prime or not .
Input
The first line of the input contains an integer T, the number of testcases. T lines follow.
Each of the next T lines contains an integer N which has to be tested for primality.
Output
For each test case output in a separate line, "yes" if the number is prime else "no."
Constraints
1 ≤ T ≤ 20
1 ≤ N ≤ 100000
Input:
5
23
13
20
1000
99991
Output:
yes
yes
no
no
yes
My code is not accepted , even though i am getting the expected output May i know which test case it is not satisfying ?
code :
t=int(input())
for i in range(t):
x=int(input())
if x > 0:
if x%2 == 0 and x % x == 0:
print('no')
else:
print('yes')
else:
pass
from Recent Questions - Stack Overflow https://ift.tt/3i2buSk
https://ift.tt/eA8V8J
Comments
Post a Comment