結果

問題 No.1884 Sequence
ユーザー Nzt3Nzt3
提出日時 2022-09-25 00:49:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 208,032 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-01 22:03:03
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 55 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 30 ms
6,944 KB
testcase_16 AC 47 ms
6,944 KB
testcase_17 AC 18 ms
6,944 KB
testcase_18 AC 24 ms
6,940 KB
testcase_19 AC 20 ms
6,940 KB
testcase_20 AC 26 ms
6,944 KB
testcase_21 AC 19 ms
6,940 KB
testcase_22 AC 30 ms
6,940 KB
testcase_23 AC 46 ms
6,940 KB
testcase_24 AC 47 ms
6,940 KB
testcase_25 AC 46 ms
6,944 KB
testcase_26 AC 47 ms
6,944 KB
testcase_27 AC 10 ms
6,940 KB
testcase_28 AC 11 ms
6,940 KB
testcase_29 AC 11 ms
6,940 KB
testcase_30 WA -
testcase_31 AC 25 ms
6,940 KB
testcase_32 AC 43 ms
6,940 KB
testcase_33 AC 31 ms
6,940 KB
testcase_34 AC 33 ms
6,940 KB
testcase_35 AC 13 ms
6,944 KB
testcase_36 AC 25 ms
6,940 KB
testcase_37 AC 32 ms
6,944 KB
testcase_38 AC 29 ms
6,940 KB
testcase_39 AC 16 ms
6,944 KB
testcase_40 AC 17 ms
6,944 KB
testcase_41 AC 39 ms
6,940 KB
testcase_42 AC 39 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<long long>A;
  int cnt0=0;
  for(int i=0;i<N;i++){
    long long a;
    cin>>a;
    if(a==0)++cnt0;
    else A.push_back(a);
  }
  sort(A.begin(),A.end());
  long long d=0;
  bool z=false;
  for(int i=0;i<(int)A.size()-1;i++){
    d=gcd(A[i+1]-A[i],d);
    if(A[i+1]==A[i])z=true;
  }
  if(z&&d!=0){
    cout<<"No\n";
    return 0;
  }
  if(d==0){
    cout<<"Yes\n";
    return 0;
  }
  for(int i=0;i<(int)A.size()-1;i++){
    cnt0-=(A[i+1]-A[i])/d-1;
  }
  cout<<(cnt0>=0?"Yes\n":"No\n");
}
0