結果

問題 No.1331 Moving Penguin
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-08 06:55:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 428 ms / 1,500 ms
コード長 810 bytes
コンパイル時間 5,394 ms
コンパイル使用メモリ 311,740 KB
実行使用メモリ 131,072 KB
最終ジャッジ日時 2024-06-26 00:12:13
合計ジャッジ時間 23,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 405 ms
131,072 KB
testcase_05 AC 421 ms
131,072 KB
testcase_06 AC 421 ms
131,072 KB
testcase_07 AC 421 ms
130,944 KB
testcase_08 AC 385 ms
130,940 KB
testcase_09 AC 386 ms
131,072 KB
testcase_10 AC 386 ms
130,944 KB
testcase_11 AC 392 ms
130,944 KB
testcase_12 AC 389 ms
130,960 KB
testcase_13 AC 392 ms
131,072 KB
testcase_14 AC 395 ms
130,944 KB
testcase_15 AC 391 ms
131,072 KB
testcase_16 AC 395 ms
131,072 KB
testcase_17 AC 388 ms
131,072 KB
testcase_18 AC 392 ms
130,944 KB
testcase_19 AC 385 ms
130,900 KB
testcase_20 AC 384 ms
130,944 KB
testcase_21 AC 387 ms
130,944 KB
testcase_22 AC 390 ms
131,072 KB
testcase_23 AC 393 ms
130,944 KB
testcase_24 AC 385 ms
130,944 KB
testcase_25 AC 386 ms
130,944 KB
testcase_26 AC 408 ms
131,072 KB
testcase_27 AC 406 ms
130,944 KB
testcase_28 AC 411 ms
130,964 KB
testcase_29 AC 409 ms
131,072 KB
testcase_30 AC 85 ms
28,032 KB
testcase_31 AC 133 ms
57,728 KB
testcase_32 AC 62 ms
24,320 KB
testcase_33 AC 126 ms
40,960 KB
testcase_34 AC 233 ms
73,216 KB
testcase_35 AC 400 ms
130,944 KB
testcase_36 AC 405 ms
131,072 KB
testcase_37 AC 404 ms
130,944 KB
testcase_38 AC 91 ms
30,336 KB
testcase_39 AC 393 ms
125,440 KB
testcase_40 AC 152 ms
48,896 KB
testcase_41 AC 428 ms
130,944 KB
testcase_42 AC 379 ms
131,072 KB
testcase_43 AC 371 ms
131,056 KB
testcase_44 AC 382 ms
130,944 KB
testcase_45 AC 348 ms
130,944 KB
testcase_46 AC 353 ms
131,072 KB
testcase_47 AC 352 ms
131,072 KB
testcase_48 AC 386 ms
130,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<ll,ll>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<(ll)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  int d=sqrt(n); d=max(d,2);
  vc dp(n,vc<mint>(d,0)); 
  vc<mint>dx(n,0); dx[0]=1;
  rep(i,n){
    int a;cin>>a;
    rep(j,d)dx[i]+=dp[i][j];
    dx[i+1]+=dx[i];
    if(a>=d)for(int j=i+a;j<n;j+=a)dx[j]+=dx[i];
    else{
      if(a>1)dp[i][a]+=dx[i];
      else if(i+2<n)dp[i+2][1]+=dx[i];      
    }
    rep(j,d)if(i+j<n)dp[i+j][j]+=dp[i][j];
  }
  cout<<dx[n-1].val();
}
      
    
0