結果

問題 No.1331 Moving Penguin
ユーザー 7LJ2DLim1Zz2ccD7LJ2DLim1Zz2ccD
提出日時 2021-01-08 22:21:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 418 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 169,300 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-11-16 13:00:40
合計ジャッジ時間 54,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,496 KB
testcase_01 AC 2 ms
9,600 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 3 ms
9,600 KB
testcase_04 AC 32 ms
10,496 KB
testcase_05 AC 551 ms
9,600 KB
testcase_06 AC 547 ms
9,600 KB
testcase_07 AC 556 ms
9,728 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 AC 33 ms
10,496 KB
testcase_27 AC 33 ms
5,248 KB
testcase_28 AC 33 ms
5,248 KB
testcase_29 AC 35 ms
5,248 KB
testcase_30 AC 12 ms
5,248 KB
testcase_31 AC 20 ms
5,248 KB
testcase_32 AC 11 ms
5,248 KB
testcase_33 AC 16 ms
5,248 KB
testcase_34 AC 23 ms
5,248 KB
testcase_35 AC 65 ms
5,248 KB
testcase_36 AC 65 ms
5,248 KB
testcase_37 AC 65 ms
5,248 KB
testcase_38 AC 13 ms
5,248 KB
testcase_39 AC 32 ms
5,248 KB
testcase_40 AC 17 ms
5,248 KB
testcase_41 AC 69 ms
5,248 KB
testcase_42 AC 63 ms
5,248 KB
testcase_43 AC 63 ms
5,248 KB
testcase_44 AC 64 ms
5,248 KB
testcase_45 AC 62 ms
5,248 KB
testcase_46 AC 63 ms
5,248 KB
testcase_47 AC 62 ms
5,248 KB
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define MOD ((long long)pow(10,9)+7)

int main(){
  int n;
  cin>>n;
  vector<int> a(n);
  for(int i=0;i<n;i++){
    cin>>a[i];
  }
  vector<long long> dp(n,0);
  dp[0]=1;
  for(int i=0;i<n-1;i++){
    dp[i+1]=(dp[i]+dp[i+1])%MOD;
    for(int k=i+a[i];k<n;k+=a[i]){
      if (k==i+1) continue;
      dp[k]=(dp[i]+dp[k])%MOD;
    }
  }
  cout<<dp[n-1]<<"\n";
  return 0;
}
0