結果

問題 No.2811 Calculation Within Sequence
ユーザー HIcoderHIcoder
提出日時 2024-08-15 22:25:49
言語 C++17
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 142 ms
6,528 KB
testcase_04 AC 144 ms
6,528 KB
testcase_05 AC 163 ms
6,400 KB
testcase_06 AC 145 ms
6,528 KB
testcase_07 AC 142 ms
6,400 KB
testcase_08 AC 143 ms
6,400 KB
testcase_09 AC 146 ms
6,400 KB
testcase_10 AC 143 ms
6,400 KB
testcase_11 AC 146 ms
6,528 KB
testcase_12 AC 145 ms
6,528 KB
testcase_13 AC 145 ms
6,400 KB
testcase_14 AC 157 ms
6,400 KB
testcase_15 AC 142 ms
6,400 KB
testcase_16 AC 143 ms
6,528 KB
testcase_17 AC 147 ms
6,400 KB
testcase_18 AC 147 ms
6,400 KB
testcase_19 AC 148 ms
6,400 KB
testcase_20 AC 141 ms
6,400 KB
testcase_21 AC 145 ms
6,400 KB
testcase_22 AC 155 ms
6,528 KB
testcase_23 AC 155 ms
6,400 KB
testcase_24 AC 85 ms
5,376 KB
testcase_25 AC 30 ms
5,376 KB
testcase_26 AC 35 ms
5,376 KB
testcase_27 AC 90 ms
5,376 KB
testcase_28 AC 14 ms
5,376 KB
testcase_29 AC 65 ms
5,376 KB
testcase_30 AC 73 ms
5,376 KB
testcase_31 AC 70 ms
5,376 KB
testcase_32 AC 20 ms
5,376 KB
testcase_33 AC 68 ms
5,376 KB
testcase_34 AC 84 ms
5,376 KB
testcase_35 AC 42 ms
5,376 KB
testcase_36 AC 75 ms
5,376 KB
testcase_37 AC 50 ms
5,376 KB
testcase_38 AC 56 ms
5,376 KB
testcase_39 AC 57 ms
5,376 KB
testcase_40 AC 75 ms
5,376 KB
testcase_41 AC 91 ms
5,376 KB
testcase_42 AC 41 ms
5,376 KB
testcase_43 AC 56 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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