其他分享
首页 > 其他分享> > excrt——cf687b

excrt——cf687b

作者:互联网

excrt的理解

问对于方程组x = ai % ci 的 通解 x+tM, (x+tM) % k 是否有唯一值 

看tm%k是否==0即可

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
const int maxn = 1e5+100;
typedef long long LL;
LL gcd(LL a,LL b) { return b==0 ? a:gcd(b,a%b);}
LL lcm(LL a,LL b){ return a/gcd(a,b)*b; }
int main()
{
    int n,k,a,i;
    scanf("%d%d",&n,&k);
    LL ans=1;
    for(i=1;i<=n;i++)
    {
        scanf("%d",&a);
        ans=lcm(ans,a)%k;
    }
    printf("%s\n",ans==0 ? "Yes":"No");
}

 

标签:cf687b,gcd,int,LL,long,excrt,tM,include
来源: https://www.cnblogs.com/zsben991126/p/11429705.html