結果

問題 No.1331 Moving Penguin
ユーザー shiomusubi496shiomusubi496
提出日時 2021-01-08 22:29:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 463 ms / 1,500 ms
コード長 508 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 172,636 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 14:50:50
合計ジャッジ時間 19,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 398 ms
5,248 KB
testcase_05 AC 391 ms
5,248 KB
testcase_06 AC 394 ms
5,248 KB
testcase_07 AC 394 ms
5,248 KB
testcase_08 AC 390 ms
5,248 KB
testcase_09 AC 391 ms
5,248 KB
testcase_10 AC 387 ms
5,248 KB
testcase_11 AC 387 ms
5,248 KB
testcase_12 AC 386 ms
5,248 KB
testcase_13 AC 391 ms
5,248 KB
testcase_14 AC 391 ms
5,248 KB
testcase_15 AC 388 ms
5,248 KB
testcase_16 AC 387 ms
5,248 KB
testcase_17 AC 395 ms
5,248 KB
testcase_18 AC 390 ms
5,248 KB
testcase_19 AC 395 ms
5,248 KB
testcase_20 AC 388 ms
5,248 KB
testcase_21 AC 389 ms
5,248 KB
testcase_22 AC 390 ms
5,248 KB
testcase_23 AC 393 ms
5,248 KB
testcase_24 AC 394 ms
5,248 KB
testcase_25 AC 391 ms
5,248 KB
testcase_26 AC 408 ms
5,248 KB
testcase_27 AC 410 ms
5,248 KB
testcase_28 AC 409 ms
5,248 KB
testcase_29 AC 405 ms
5,248 KB
testcase_30 AC 82 ms
5,248 KB
testcase_31 AC 175 ms
5,248 KB
testcase_32 AC 69 ms
5,248 KB
testcase_33 AC 122 ms
5,248 KB
testcase_34 AC 223 ms
5,248 KB
testcase_35 AC 434 ms
5,248 KB
testcase_36 AC 428 ms
5,248 KB
testcase_37 AC 434 ms
5,248 KB
testcase_38 AC 89 ms
5,248 KB
testcase_39 AC 388 ms
5,248 KB
testcase_40 AC 147 ms
5,248 KB
testcase_41 AC 400 ms
5,248 KB
testcase_42 AC 437 ms
5,248 KB
testcase_43 AC 440 ms
5,248 KB
testcase_44 AC 431 ms
5,248 KB
testcase_45 AC 461 ms
5,248 KB
testcase_46 AC 457 ms
5,248 KB
testcase_47 AC 463 ms
5,248 KB
testcase_48 AC 394 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int mod=1000000007;
signed main(){
  int N;cin>>N;
  int S=sqrt(N);
  vector<int>dp(N);dp[0]=1;
  vector<vector<int>>A(S,vector<int>(S));
  for(int i=0;i<N-1;i++){
    int a;cin>>a;
    if(a<S){
      A[a][i%a]=(dp[i]+A[a][i%a])%mod;
    }else{
      for(int j=i+a;j<N;j+=a)dp[j]=(dp[j]+dp[i])%mod;
    }
    if(a!=1)dp[i+1]=(dp[i+1]+dp[i])%mod;
    for(int j=1;j<S;j++)dp[i+1]=(dp[i+1]+A[j][(i+1)%j])%mod;
  }
  cout<<dp[N-1]<<endl;
}
0