結果

問題 No.1884 Sequence
ユーザー taisii2taisii2
提出日時 2022-03-25 21:47:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 173,208 KB
実行使用メモリ 7,144 KB
最終ジャッジ日時 2024-10-14 05:43:04
合計ジャッジ時間 6,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 157 ms
7,016 KB
testcase_11 AC 158 ms
7,016 KB
testcase_12 AC 29 ms
5,248 KB
testcase_13 AC 32 ms
5,248 KB
testcase_14 AC 30 ms
5,248 KB
testcase_15 AC 92 ms
5,992 KB
testcase_16 AC 143 ms
7,020 KB
testcase_17 AC 64 ms
5,504 KB
testcase_18 AC 90 ms
5,992 KB
testcase_19 AC 72 ms
5,764 KB
testcase_20 AC 79 ms
5,992 KB
testcase_21 AC 61 ms
5,248 KB
testcase_22 AC 86 ms
6,116 KB
testcase_23 AC 142 ms
7,016 KB
testcase_24 AC 142 ms
7,016 KB
testcase_25 AC 136 ms
7,020 KB
testcase_26 AC 142 ms
7,020 KB
testcase_27 AC 36 ms
5,248 KB
testcase_28 AC 36 ms
5,248 KB
testcase_29 AC 36 ms
5,248 KB
testcase_30 AC 36 ms
5,248 KB
testcase_31 AC 74 ms
5,724 KB
testcase_32 AC 132 ms
7,016 KB
testcase_33 AC 127 ms
7,016 KB
testcase_34 AC 127 ms
7,144 KB
testcase_35 AC 42 ms
5,248 KB
testcase_36 AC 96 ms
5,988 KB
testcase_37 AC 127 ms
6,936 KB
testcase_38 AC 115 ms
7,012 KB
testcase_39 AC 55 ms
5,376 KB
testcase_40 AC 60 ms
5,504 KB
testcase_41 AC 117 ms
7,020 KB
testcase_42 AC 117 ms
7,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int N;
  cin >> N;
  vector<long long> A(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }
  sort(A.begin(), A.end());
  vector<long long> B;
  int cnt0 = 0;
  for (int i = 0; i < N - 1; i++) {
    if (A[i] != 0) {
      B.push_back(A[i + 1] - A[i]);
    } else {
      cnt0++;
    }
  }
  sort(B.begin(), B.end());
  bool ok = false;
  if (B.empty()) {
    ok = true;
  } else if (B[0] == 0) {
    if (B.back() == 0) {
      ok = true;
    }
  } else {
    long long g = B[0];
    for (int i = 0; i < B.size(); i++) {
      g = __gcd(g, B[i]);
    }
    long long c = 0;
    for (int i = 0; i < B.size(); i++) {
      c += B[i] / g - 1;
    }
    if (cnt0 >= c) {
      ok = true;
    }
  }
  if (ok) {
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}
0