結果

問題 No.1884 Sequence
ユーザー miscalcmiscalc
提出日時 2022-03-07 14:32:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 836 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 208,740 KB
実行使用メモリ 8,172 KB
最終ジャッジ日時 2024-07-22 09:30:57
合計ジャッジ時間 6,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 149 ms
8,168 KB
testcase_11 AC 144 ms
8,040 KB
testcase_12 AC 25 ms
6,944 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 26 ms
6,944 KB
testcase_15 AC 84 ms
6,944 KB
testcase_16 AC 131 ms
8,172 KB
testcase_17 AC 58 ms
6,940 KB
testcase_18 AC 80 ms
6,940 KB
testcase_19 AC 62 ms
6,940 KB
testcase_20 AC 68 ms
6,944 KB
testcase_21 AC 52 ms
6,944 KB
testcase_22 AC 75 ms
6,940 KB
testcase_23 AC 125 ms
8,044 KB
testcase_24 AC 127 ms
8,168 KB
testcase_25 AC 122 ms
8,040 KB
testcase_26 AC 126 ms
8,164 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 29 ms
6,940 KB
testcase_30 AC 29 ms
6,944 KB
testcase_31 AC 69 ms
6,940 KB
testcase_32 AC 116 ms
7,912 KB
testcase_33 AC 111 ms
8,148 KB
testcase_34 AC 114 ms
8,044 KB
testcase_35 AC 36 ms
6,940 KB
testcase_36 AC 82 ms
7,016 KB
testcase_37 AC 111 ms
8,164 KB
testcase_38 AC 102 ms
8,040 KB
testcase_39 AC 48 ms
6,944 KB
testcase_40 AC 51 ms
6,944 KB
testcase_41 AC 107 ms
7,272 KB
testcase_42 AC 103 ms
7,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
  int N;
  cin >> N;
  vector<ll> A(N);
  for (int i = 0; i < N; i++)
  {
    cin >> A.at(i);
  }

  vector<ll> C;
  for (int i = 0; i < N; i++)
  {
    if (A.at(i) != 0)
      C.push_back(A.at(i));
  }
  int K = C.size();
  assert(K != 1);

  sort(C.begin(), C.end());
  vector<ll> D(K - 1);
  for (int i = 0; i < K - 1; i++)
  {
    D.at(i) = C.at(i + 1) - C.at(i);
  }

  int zerocnt = count(D.begin(), D.end(), 0LL);
  if (zerocnt > 0)
  {
    cout << (zerocnt == K - 1 ? "Yes" : "No") << endl;
    return 0;
  }

  ll g = 0;
  for (int i = 0; i < K - 1; i++)
  {
    g = gcd(g, D.at(i));
  }

  ll need = 0;
  for (int i = 0; i < K - 1; i++)
  {
    ll tmp = D.at(i) / g - 1;
    need += tmp;
  }

  cout << (need <= N - K ? "Yes" : "No") << endl;
}
0