結果

問題 No.2811 Calculation Within Sequence
ユーザー zeta7532zeta7532
提出日時 2024-07-17 23:18:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 205,216 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-17 23:18:16
合計ジャッジ時間 11,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 196 ms
6,940 KB
testcase_04 AC 168 ms
6,400 KB
testcase_05 AC 168 ms
6,940 KB
testcase_06 AC 165 ms
6,940 KB
testcase_07 AC 183 ms
6,944 KB
testcase_08 AC 165 ms
6,944 KB
testcase_09 AC 166 ms
6,940 KB
testcase_10 AC 165 ms
6,944 KB
testcase_11 AC 164 ms
6,944 KB
testcase_12 AC 165 ms
6,944 KB
testcase_13 AC 167 ms
6,944 KB
testcase_14 AC 172 ms
6,944 KB
testcase_15 AC 167 ms
6,940 KB
testcase_16 AC 164 ms
6,940 KB
testcase_17 AC 166 ms
6,940 KB
testcase_18 AC 164 ms
6,940 KB
testcase_19 AC 165 ms
6,940 KB
testcase_20 AC 175 ms
6,940 KB
testcase_21 AC 166 ms
6,944 KB
testcase_22 AC 167 ms
6,940 KB
testcase_23 AC 176 ms
6,944 KB
testcase_24 AC 94 ms
6,944 KB
testcase_25 AC 34 ms
6,940 KB
testcase_26 AC 40 ms
6,940 KB
testcase_27 AC 103 ms
6,944 KB
testcase_28 AC 17 ms
6,940 KB
testcase_29 AC 74 ms
6,944 KB
testcase_30 AC 83 ms
6,940 KB
testcase_31 AC 105 ms
6,944 KB
testcase_32 AC 23 ms
6,940 KB
testcase_33 AC 76 ms
6,944 KB
testcase_34 AC 99 ms
6,948 KB
testcase_35 AC 48 ms
6,944 KB
testcase_36 AC 79 ms
6,944 KB
testcase_37 AC 57 ms
6,944 KB
testcase_38 AC 64 ms
6,940 KB
testcase_39 AC 62 ms
6,944 KB
testcase_40 AC 84 ms
6,944 KB
testcase_41 AC 102 ms
6,944 KB
testcase_42 AC 47 ms
6,944 KB
testcase_43 AC 64 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll = long long;
const ll mod = 998244353;
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(x) x.begin(),x.end()
#define faster ios::sync_with_stdio(false);cin.tie(nullptr)

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

int main() {
    ll a,b;
    cin >> a >> b;
    vector<ll> t(a),s(b);
    rep(i,a) cin >> t[i];
    rep(i,b) cin >> s[i];
    ll g=0;
    rep(i,a) g=gcd(g,t[i]);
    bool ok=true;
    rep(i,b) if(s[i]%g!=0) ok=false;
    if(ok){
        cout << "Yes" << endl;
    }else{
        cout << "No" << endl;
    }
    return 0;
}
0