結果

問題 No.1884 Sequence
ユーザー bonKotsubonKotsu
提出日時 2022-07-28 15:27:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,097 bytes
コンパイル時間 4,113 ms
コンパイル使用メモリ 269,356 KB
実行使用メモリ 14,288 KB
最終ジャッジ日時 2024-07-18 06:19:02
合計ジャッジ時間 10,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 RE -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 222 ms
14,288 KB
testcase_11 AC 256 ms
14,252 KB
testcase_12 AC 23 ms
6,940 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 116 ms
8,784 KB
testcase_16 AC 231 ms
14,160 KB
testcase_17 AC 68 ms
6,940 KB
testcase_18 AC 107 ms
9,420 KB
testcase_19 AC 85 ms
7,888 KB
testcase_20 AC 93 ms
7,504 KB
testcase_21 AC 63 ms
6,944 KB
testcase_22 AC 102 ms
8,144 KB
testcase_23 AC 219 ms
14,288 KB
testcase_24 AC 216 ms
14,288 KB
testcase_25 AC 210 ms
14,284 KB
testcase_26 AC 221 ms
14,208 KB
testcase_27 RE -
testcase_28 AC 29 ms
6,944 KB
testcase_29 AC 28 ms
6,944 KB
testcase_30 AC 30 ms
6,944 KB
testcase_31 AC 95 ms
7,888 KB
testcase_32 AC 206 ms
13,648 KB
testcase_33 AC 109 ms
6,944 KB
testcase_34 AC 111 ms
6,940 KB
testcase_35 AC 34 ms
6,944 KB
testcase_36 AC 79 ms
6,944 KB
testcase_37 AC 110 ms
6,940 KB
testcase_38 AC 102 ms
6,944 KB
testcase_39 AC 48 ms
6,940 KB
testcase_40 AC 49 ms
6,940 KB
testcase_41 AC 165 ms
11,472 KB
testcase_42 AC 166 ms
11,600 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