結果

問題 No.1884 Sequence
ユーザー miscalcmiscalc
提出日時 2022-03-07 14:34:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 809 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 208,056 KB
実行使用メモリ 8,424 KB
最終ジャッジ日時 2024-07-22 09:31:17
合計ジャッジ時間 8,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 RE -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 RE -
testcase_10 AC 150 ms
8,040 KB
testcase_11 AC 146 ms
8,164 KB
testcase_12 AC 27 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 87 ms
6,508 KB
testcase_16 AC 139 ms
8,040 KB
testcase_17 AC 59 ms
5,864 KB
testcase_18 AC 86 ms
6,676 KB
testcase_19 AC 68 ms
6,020 KB
testcase_20 AC 75 ms
6,124 KB
testcase_21 AC 57 ms
5,604 KB
testcase_22 AC 80 ms
6,244 KB
testcase_23 AC 139 ms
8,168 KB
testcase_24 AC 137 ms
8,040 KB
testcase_25 AC 131 ms
8,044 KB
testcase_26 AC 138 ms
8,080 KB
testcase_27 AC 32 ms
5,376 KB
testcase_28 AC 33 ms
5,376 KB
testcase_29 AC 33 ms
5,376 KB
testcase_30 AC 33 ms
5,376 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 110 ms
7,272 KB
testcase_42 AC 115 ms
7,400 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();
  if (K == 0)
  {
    cout << "Yes" << endl;
    return 0;
  }

  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);
  assert(zerocnt == 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