結果

問題 No.1884 Sequence
ユーザー umezoumezo
提出日時 2022-03-25 21:35:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 213,104 KB
実行使用メモリ 15,748 KB
最終ジャッジ日時 2024-10-14 05:29:34
合計ジャッジ時間 6,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 174 ms
15,744 KB
testcase_11 AC 179 ms
15,616 KB
testcase_12 AC 11 ms
6,816 KB
testcase_13 AC 13 ms
6,816 KB
testcase_14 AC 12 ms
6,816 KB
testcase_15 AC 75 ms
10,248 KB
testcase_16 AC 169 ms
15,748 KB
testcase_17 AC 35 ms
8,064 KB
testcase_18 AC 58 ms
11,008 KB
testcase_19 AC 45 ms
9,244 KB
testcase_20 AC 59 ms
8,840 KB
testcase_21 AC 39 ms
7,300 KB
testcase_22 AC 66 ms
9,600 KB
testcase_23 AC 165 ms
15,708 KB
testcase_24 AC 174 ms
15,616 KB
testcase_25 AC 165 ms
15,748 KB
testcase_26 AC 175 ms
15,744 KB
testcase_27 AC 14 ms
6,820 KB
testcase_28 AC 13 ms
6,820 KB
testcase_29 AC 13 ms
6,816 KB
testcase_30 AC 13 ms
6,816 KB
testcase_31 AC 51 ms
8,948 KB
testcase_32 AC 136 ms
15,112 KB
testcase_33 AC 36 ms
6,916 KB
testcase_34 AC 36 ms
6,912 KB
testcase_35 AC 16 ms
6,816 KB
testcase_36 AC 29 ms
6,816 KB
testcase_37 AC 36 ms
6,916 KB
testcase_38 AC 34 ms
6,916 KB
testcase_39 AC 19 ms
6,820 KB
testcase_40 AC 21 ms
6,816 KB
testcase_41 AC 112 ms
13,060 KB
testcase_42 AC 116 ms
13,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<ll> A(n);
  rep(i,n) cin>>A[i];
  ll cnt=0;
  vector<ll> B;
  set<ll> s;
  rep(i,n){
    if(A[i]==0) cnt++;
    else{
      B.push_back(A[i]);
      s.insert(A[i]);
    }
  }
  if(s.size()<2) cout<<"Yes"<<endl;
  else if(s.size()!=n-cnt) cout<<"No"<<endl;
  else{
    sort(ALL(B));
    ll d=0;
    ll b=B.size();
    rep(i,b-1){
      d=gcd(d,B[i+1]-B[i]);
    }
    if(d==0) cout<<"Yes"<<endl;
    else{
      ll m=(B[b-1]-B[0])/d-1;
      if(m>n-2) cout<<"No"<<endl;
      else cout<<"Yes"<<endl;
    }
  }
   
  return 0;
}
0