結果

問題 No.2811 Calculation Within Sequence
ユーザー Iroha_3856Iroha_3856
提出日時 2024-07-19 21:25:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 3,010 ms
コンパイル使用メモリ 247,000 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-19 21:26:01
合計ジャッジ時間 9,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 173 ms
5,376 KB
testcase_04 AC 174 ms
5,376 KB
testcase_05 AC 166 ms
5,376 KB
testcase_06 AC 172 ms
5,376 KB
testcase_07 AC 174 ms
5,376 KB
testcase_08 AC 169 ms
5,376 KB
testcase_09 AC 167 ms
5,376 KB
testcase_10 AC 168 ms
5,376 KB
testcase_11 AC 172 ms
5,376 KB
testcase_12 AC 169 ms
5,376 KB
testcase_13 AC 167 ms
5,376 KB
testcase_14 AC 169 ms
5,376 KB
testcase_15 AC 175 ms
5,376 KB
testcase_16 AC 169 ms
5,376 KB
testcase_17 AC 162 ms
5,376 KB
testcase_18 AC 171 ms
5,376 KB
testcase_19 AC 173 ms
5,376 KB
testcase_20 AC 171 ms
5,376 KB
testcase_21 AC 164 ms
5,376 KB
testcase_22 AC 165 ms
5,376 KB
testcase_23 AC 175 ms
5,376 KB
testcase_24 AC 100 ms
5,376 KB
testcase_25 AC 34 ms
5,376 KB
testcase_26 AC 42 ms
5,376 KB
testcase_27 AC 111 ms
5,376 KB
testcase_28 AC 18 ms
5,376 KB
testcase_29 AC 77 ms
5,376 KB
testcase_30 AC 87 ms
5,376 KB
testcase_31 AC 86 ms
5,376 KB
testcase_32 AC 23 ms
5,376 KB
testcase_33 AC 80 ms
5,376 KB
testcase_34 WA -
testcase_35 AC 51 ms
5,376 KB
testcase_36 AC 85 ms
5,376 KB
testcase_37 WA -
testcase_38 AC 67 ms
5,376 KB
testcase_39 AC 62 ms
5,376 KB
testcase_40 AC 85 ms
5,376 KB
testcase_41 AC 100 ms
5,376 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, l, r) for (int i = (int)(l); i<(int)(r); i++)
#define ll long long

int main() {
    int N, M; cin >> N >> M;
    vector<int> A(N), B(M);
    rep(i, 0, N) cin >> A[i];
    rep(i, 0, M) cin >> B[i];
    int gA = 0, gB = 0;
    rep(i, 0, N) gA = gcd(gA, A[i]);
    rep(i, 0, M) gB = gcd(gB, B[i]);
    if (N >= M && gB%gA == 0) {
        cout << "Yes" << endl;
    }
    else cout << "No" << endl;
}
0