結果

問題 No.1331 Moving Penguin
ユーザー どららどらら
提出日時 2021-01-08 23:23:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 972 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 166,224 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-11-16 18:17:29
合計ジャッジ時間 67,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 3 ms
9,984 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 TLE -
testcase_05 AC 179 ms
10,496 KB
testcase_06 AC 181 ms
10,240 KB
testcase_07 AC 180 ms
10,496 KB
testcase_08 AC 177 ms
10,112 KB
testcase_09 AC 179 ms
10,496 KB
testcase_10 AC 176 ms
9,984 KB
testcase_11 AC 177 ms
9,344 KB
testcase_12 AC 176 ms
10,496 KB
testcase_13 AC 175 ms
10,496 KB
testcase_14 AC 179 ms
9,472 KB
testcase_15 AC 179 ms
9,216 KB
testcase_16 AC 178 ms
10,496 KB
testcase_17 AC 178 ms
10,624 KB
testcase_18 AC 175 ms
9,600 KB
testcase_19 AC 174 ms
10,624 KB
testcase_20 AC 178 ms
10,240 KB
testcase_21 AC 175 ms
10,624 KB
testcase_22 AC 179 ms
10,240 KB
testcase_23 AC 173 ms
10,624 KB
testcase_24 AC 174 ms
10,240 KB
testcase_25 AC 172 ms
10,624 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 187 ms
11,136 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 177 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

static const ll MOD = 1000000007;

int N;
ll v[100005];
ll dp[100005];

ll memo[320][320];

int main(){
  cin >> N;
  rep(i,N){
    cin >> v[i+1];
  }
  
  dp[1] = 1;

  REP(i,1,N+1){
    REP(j,1,320){
      dp[i] += memo[j][i%j];
      dp[i] %= MOD;
    }
    if(v[i] < 320){
      memo[v[i]][i%v[i]] += dp[i];
      memo[v[i]][i%v[i]] %= MOD;
      if(v[i] != 1){
        dp[i+1] += dp[i];
        dp[i+1] %= MOD;
      }
    }else{
      dp[i+1] += dp[i];
      dp[i+1] %= MOD;

      int p = i%v[i];
      int j = 1;
      while(p*j<=N){
        dp[i+p*j] += dp[i];
        dp[i+p*j] %= MOD;
        j++;
      }
    }
  }

  cout << dp[N] << endl;
  
  return 0;
}

0