/* Bismillahir Rahmanir Rahim
Time Complexity: O(sqrt(n)/2)
*/
#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll n, i;
bool isPrime(int n){
if(n<2 || (n!=2 && n%2==0)) return false;
else{
for(i=3; i*i<=n; i+=2){
if(n%i==0) return false;
}
}
return true;
}
int main(){
while(cin>>n){
if(isPrime(n)) cout<<"Prime"<<endl;
else cout<<"Not Prime"<<endl;
}
return 0;
}
|
Monday, March 20, 2017
Primality Checking
Subscribe to:
Post Comments (Atom)
-
#include<bits/stdc++.h> #define ll long long using namespace std ; ll n , k , t_case ; ll bigmod ( ll b , ll p , ll m...
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 ...
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3...
No comments:
Post a Comment