結果

問題 No.1884 Sequence
ユーザー ytqm3ytqm3
提出日時 2022-04-07 13:33:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 208,180 KB
実行使用メモリ 8,168 KB
最終ジャッジ日時 2024-11-28 00:05:01
合計ジャッジ時間 6,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 122 ms
8,168 KB
testcase_11 AC 128 ms
8,168 KB
testcase_12 AC 25 ms
5,248 KB
testcase_13 AC 28 ms
5,248 KB
testcase_14 AC 27 ms
5,248 KB
testcase_15 AC 83 ms
6,632 KB
testcase_16 AC 147 ms
8,044 KB
testcase_17 AC 59 ms
5,860 KB
testcase_18 AC 71 ms
6,632 KB
testcase_19 AC 66 ms
6,020 KB
testcase_20 AC 74 ms
6,120 KB
testcase_21 AC 50 ms
5,612 KB
testcase_22 AC 69 ms
6,372 KB
testcase_23 AC 142 ms
8,168 KB
testcase_24 AC 143 ms
8,036 KB
testcase_25 AC 114 ms
8,040 KB
testcase_26 AC 119 ms
8,040 KB
testcase_27 AC 27 ms
5,248 KB
testcase_28 AC 28 ms
5,248 KB
testcase_29 AC 27 ms
5,248 KB
testcase_30 AC 28 ms
5,248 KB
testcase_31 AC 62 ms
5,976 KB
testcase_32 AC 114 ms
7,916 KB
testcase_33 AC 110 ms
7,016 KB
testcase_34 AC 118 ms
6,972 KB
testcase_35 AC 36 ms
5,248 KB
testcase_36 AC 83 ms
5,988 KB
testcase_37 AC 113 ms
8,040 KB
testcase_38 AC 100 ms
8,040 KB
testcase_39 AC 45 ms
5,480 KB
testcase_40 AC 49 ms
5,608 KB
testcase_41 AC 99 ms
7,272 KB
testcase_42 AC 115 ms
7,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  i64 N;
  cin>>N;
  vector<i64> a(N);
  for(auto& v:a){
    cin>>v;
  }
  vector<i64> A;
  for(auto& v:a){
    if(v!=0){
      A.emplace_back(v);
    }
  }
  if(A.size()==0){
    puts("Yes");
    return 0;
  }
  int n=A.size();
  sort(A.begin(),A.end());
  i64 now=1,k=A.back()-A[0];
  if(k==0){
    puts("Yes");
    return 0;
  }
  auto B=A;
  if(unique(B.begin(),B.end())!=B.end()){
    puts("No");
    return 0;
  }
  for(int i=1;i<n-1;++i){
    i64 t=k/gcd(k,A[i]-A[0]);
    if(t/gcd(now,t)<=(N-1)/now){
      now=lcm(t,now);
    }
    else{
      puts("No");
      return 0;
    }
  }
  puts("Yes");
}
0