結果

問題 No.1884 Sequence
ユーザー miscalcmiscalc
提出日時 2022-03-07 14:35:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 826 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 209,808 KB
実行使用メモリ 8,168 KB
最終ジャッジ日時 2024-07-22 09:32:04
合計ジャッジ時間 7,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_10 AC 141 ms
8,168 KB
testcase_11 AC 149 ms
8,164 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 87 ms
6,636 KB
testcase_16 AC 134 ms
8,044 KB
testcase_17 AC 58 ms
5,992 KB
testcase_18 AC 85 ms
6,796 KB
testcase_19 AC 66 ms
6,152 KB
testcase_20 AC 74 ms
6,124 KB
testcase_21 AC 55 ms
5,732 KB
testcase_22 AC 80 ms
6,380 KB
testcase_23 AC 133 ms
8,168 KB
testcase_24 AC 132 ms
8,040 KB
testcase_25 AC 126 ms
8,040 KB
testcase_26 AC 133 ms
8,036 KB
testcase_27 AC 31 ms
5,376 KB
testcase_28 AC 31 ms
5,376 KB
testcase_29 AC 31 ms
5,376 KB
testcase_30 AC 32 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 107 ms
7,404 KB
testcase_42 AC 106 ms
7,272 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);
  if (zerocnt > 0) cout << "No" << endl;

  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