結果

問題 No.2811 Calculation Within Sequence
ユーザー HIcoderHIcoder
提出日時 2024-08-15 22:25:49
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 1,178 ms
コンパイル使用メモリ 118,200 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-08-15 22:25:59
合計ジャッジ時間 9,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

ll gcd(ll a,ll b){
    if(b==0) return a;
    return gcd(b,a%b);
}


int main(){
    int a,b;
    cin>>a>>b;
    vector<ll> T(a),S(b);
    for(int i=0;i<a;i++)cin>>T[i];
    for(int i=0;i<b;i++)cin>>S[i];

    ll g=0;
    for(int i=0;i<a;i++){
        g=gcd(T[i],g);
    }

    for(int i=0;i<b;i++){
        if(S[i]%g!=0){
            cout<<"No"<<endl;
            return 0;
        }
    }
    cout<<"Yes"<<endl;  

}
0