当前位置:   article > 正文

AcWing 866. 试除法判定质数(素数判定)_acwing866

acwing866

题目连接

https://www.acwing.com/problem/content/description/868/

思路

对于一个数来说我们判断其是否有除1和本身外的因子实际上只需要从 [ 2 , x ] [2,\sqrt{x}] [2,x ]即可,因为因子是对称的例如6来说当我们枚举到2的时候就不必枚举3了,因为已知一个因子2,那么另一个因子必然为3,所以这就是试除法判定质数的思路和原理

代码

#include<bits/stdc++.h>
using namespace std;
#define ll long long

ll n,a;

bool is_prime(ll x){
    if(x == 1 || x == 0) return false;
    for(ll i = 2;i * i <= x; ++i) {
        if(x % i == 0) return false;
    }
    return true;
}

int main(){
    cin>>n;
    while(n--){
        cin>>a;
        if(is_prime(a)) cout<<"Yes"<<endl;
        else cout<<"No"<<endl;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/446847
推荐阅读
  

闽ICP备14008679号