結果

問題 No.2811 Calculation Within Sequence
ユーザー Pres1dentPres1dent
提出日時 2024-07-19 21:31:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 495 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 202,172 KB
実行使用メモリ 818,144 KB
最終ジャッジ日時 2024-07-19 21:31:53
合計ジャッジ時間 9,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 168 ms
7,680 KB
testcase_04 AC 394 ms
268,800 KB
testcase_05 AC 170 ms
7,424 KB
testcase_06 AC 173 ms
5,376 KB
testcase_07 AC 196 ms
6,784 KB
testcase_08 AC 171 ms
5,376 KB
testcase_09 AC 172 ms
5,376 KB
testcase_10 AC 169 ms
5,376 KB
testcase_11 AC 177 ms
5,888 KB
testcase_12 AC 168 ms
5,376 KB
testcase_13 AC 221 ms
75,776 KB
testcase_14 AC 422 ms
325,972 KB
testcase_15 AC 167 ms
5,376 KB
testcase_16 AC 191 ms
5,376 KB
testcase_17 MLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int n, m; cin >> n >> m;
  vector<int> a(n), b(m);
  int g = 0;
  for (int i = 0; i < n; i++) {
    cin >> a[i];
    g = gcd(g, a[i]);
  }
  for (int i = 0; i < m; i++) { cin >> b[i]; }
  // cerr << g << endl;
  vector<int> ok(g);
  for (int i = 0; i < n; i++) {
    ok[a[i] % g] = true;
  }
  for (int i = 0; i < m; i++) {
    if (not ok[b[i] % g]) {
      cout << "No" << endl;
      return 0;
    }
  }
  cout << "Yes" << endl;
}
0