結果

問題 No.2075 GCD Subsequence
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2022-09-16 11:12:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 631 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 69,376 KB
実行使用メモリ 30,908 KB
最終ジャッジ日時 2024-12-21 06:30:13
合計ジャッジ時間 107,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
24,188 KB
testcase_01 AC 3 ms
19,420 KB
testcase_02 AC 4 ms
18,480 KB
testcase_03 AC 4 ms
18,980 KB
testcase_04 AC 4 ms
23,132 KB
testcase_05 AC 4 ms
18,316 KB
testcase_06 AC 4 ms
24,784 KB
testcase_07 AC 3 ms
24,460 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 5 ms
12,144 KB
testcase_30 AC 5 ms
30,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cassert>
#include<iostream>
using namespace std;
typedef long long lint;
#define rep(i,n)for(int i=0;i<(int)(n);++i)

const lint mod=998244353;
#define N 1000001

void add(lint&a,lint b){
  a+=b;
  if(a>=mod)a-=mod;
}

int v[N];
lint dp[N];

int gcd(int a,int b){
  while(b){
    int r=a%b;
    a=b,b=r;
  }
  return a;
}

// TLE 解法。
int main(){
  int n;cin>>n;
  for(int i=2;i<N;i++)dp[i]=1;
  lint ans=0;
  rep(i,n){
    int a;cin>>a;
    v[i]=a;
    if(a==1){
      add(ans,1);
      continue;
    }
    dp[i]=1;
    rep(j,i)
      if(gcd(v[j],a)!=1)add(dp[i],dp[j]);
    add(ans,dp[i]);
  }
  cout<<ans<<endl;
}
0