結果

問題 No.2811 Calculation Within Sequence
ユーザー tobbietobbie
提出日時 2024-08-02 23:28:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 172,500 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-02 23:28:31
合計ジャッジ時間 11,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 172 ms
6,940 KB
testcase_04 AC 170 ms
6,940 KB
testcase_05 AC 190 ms
6,940 KB
testcase_06 AC 186 ms
6,940 KB
testcase_07 AC 175 ms
6,940 KB
testcase_08 AC 182 ms
6,944 KB
testcase_09 AC 177 ms
6,944 KB
testcase_10 AC 185 ms
6,944 KB
testcase_11 AC 176 ms
6,940 KB
testcase_12 AC 172 ms
6,940 KB
testcase_13 AC 164 ms
6,940 KB
testcase_14 AC 160 ms
6,944 KB
testcase_15 AC 175 ms
6,940 KB
testcase_16 AC 171 ms
6,944 KB
testcase_17 AC 161 ms
6,944 KB
testcase_18 AC 210 ms
6,940 KB
testcase_19 AC 177 ms
6,944 KB
testcase_20 AC 167 ms
6,940 KB
testcase_21 AC 163 ms
6,940 KB
testcase_22 AC 160 ms
6,940 KB
testcase_23 AC 172 ms
6,944 KB
testcase_24 AC 118 ms
6,940 KB
testcase_25 AC 35 ms
6,940 KB
testcase_26 AC 44 ms
6,940 KB
testcase_27 AC 121 ms
6,944 KB
testcase_28 AC 20 ms
6,944 KB
testcase_29 AC 84 ms
6,940 KB
testcase_30 AC 83 ms
6,940 KB
testcase_31 AC 102 ms
6,940 KB
testcase_32 AC 24 ms
6,940 KB
testcase_33 AC 84 ms
6,940 KB
testcase_34 AC 100 ms
6,940 KB
testcase_35 AC 47 ms
6,940 KB
testcase_36 AC 91 ms
6,940 KB
testcase_37 AC 57 ms
6,944 KB
testcase_38 AC 65 ms
6,940 KB
testcase_39 AC 62 ms
6,944 KB
testcase_40 AC 97 ms
6,948 KB
testcase_41 AC 98 ms
6,944 KB
testcase_42 AC 46 ms
6,944 KB
testcase_43 AC 64 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)

int main() {
  int a, b;
  cin >> a >> b;
  vector<int> t(a), s(b);
  rep(i, a)
    cin >> t[i];
  rep(i, b)
    cin >> s[i];
  sort(t.begin(), t.end());
  vector<int> tDif;
  int tOdd = 0, tEven = 0;
  rep(i, a) {
    if (t[i] % 2 == 0)
      tEven++;
    else
      tOdd++;
    if (i > 0) {
      if (t[i] != t[i-1])
	tDif.push_back(abs(t[i] - t[i-1]));
    }
  }
  sort(tDif.begin(), tDif.end());
  bool ans = true;
  rep(i, b) {
    if ((int)tDif.size() == 0) {
      if (s[i] % t[0] != 0)
	ans = false;
    } else {
      if (s[i] % t[0] != 0 && s[i] % tDif[0] != 0)
	ans = false;
    }
  }
  if (ans)
    cout << "Yes" << endl;
  else
    cout << "No" << endl;
  return 0;
}
0