結果

問題 No.1884 Sequence
ユーザー bonKotsubonKotsu
提出日時 2022-07-28 15:29:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,097 bytes
コンパイル時間 4,316 ms
コンパイル使用メモリ 270,816 KB
実行使用メモリ 14,292 KB
最終ジャッジ日時 2024-07-18 06:21:41
合計ジャッジ時間 9,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 250 ms
14,160 KB
testcase_11 AC 232 ms
14,160 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 26 ms
5,376 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 125 ms
8,784 KB
testcase_16 AC 237 ms
14,284 KB
testcase_17 AC 71 ms
6,604 KB
testcase_18 AC 110 ms
9,548 KB
testcase_19 AC 85 ms
8,016 KB
testcase_20 AC 99 ms
7,500 KB
testcase_21 AC 67 ms
5,840 KB
testcase_22 AC 105 ms
8,144 KB
testcase_23 AC 226 ms
14,288 KB
testcase_24 AC 223 ms
14,292 KB
testcase_25 AC 202 ms
14,232 KB
testcase_26 AC 215 ms
14,284 KB
testcase_27 AC 28 ms
5,376 KB
testcase_28 AC 28 ms
5,376 KB
testcase_29 AC 28 ms
5,376 KB
testcase_30 AC 28 ms
5,376 KB
testcase_31 AC 88 ms
7,884 KB
testcase_32 AC 203 ms
13,520 KB
testcase_33 AC 112 ms
5,452 KB
testcase_34 AC 110 ms
5,456 KB
testcase_35 AC 35 ms
5,376 KB
testcase_36 AC 81 ms
5,376 KB
testcase_37 AC 110 ms
5,456 KB
testcase_38 AC 102 ms
5,456 KB
testcase_39 AC 51 ms
5,376 KB
testcase_40 AC 52 ms
5,376 KB
testcase_41 AC 182 ms
11,600 KB
testcase_42 AC 175 ms
11,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };

int main() {
  int n;
  cin >> n;
  vector<ll> a;
  set<ll> s;
  ll cnt1 = 0;
  rep(i,n) {
    ll x;
    cin >> x;
    if (x == 0) cnt1++;
    else {
      a.pb(x);
      s.insert(x);
    }
  }
  if (a.size() <= 1 || s.size() <= 1) {
    cout << "Yes" << endl;
    return 0;
  }


  sort(all(a));
  ll g = a[1]-a[0];
  rep(i,a.size()-1) {
    if (a[i+1]-a[i] == 0) {
      cout << "No" << endl;
      return 0;
    } 
    g = gcd(g, a[i+1]-a[i]);
  }
  ll cnt2 = 0;
  rep(i,a.size()-1) {
    cnt2 += (a[i+1]-a[i])/g-1;
  }
  if (cnt1 >= cnt2) cout << "Yes" << endl;
  else cout << "No" << endl;

  
  return 0;
}
0