結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 251 ms
10,496 KB
testcase_06 AC 261 ms
10,240 KB
testcase_07 AC 260 ms
10,496 KB
testcase_08 AC 255 ms
10,112 KB
testcase_09 AC 259 ms
10,496 KB
testcase_10 AC 256 ms
9,984 KB
testcase_11 AC 252 ms
9,600 KB
testcase_12 AC 254 ms
9,600 KB
testcase_13 AC 252 ms
10,624 KB
testcase_14 AC 258 ms
9,472 KB
testcase_15 AC 255 ms
10,624 KB
testcase_16 AC 251 ms
9,216 KB
testcase_17 AC 252 ms
10,624 KB
testcase_18 AC 254 ms
9,728 KB
testcase_19 AC 251 ms
10,880 KB
testcase_20 AC 250 ms
10,624 KB
testcase_21 AC 258 ms
10,496 KB
testcase_22 AC 255 ms
9,728 KB
testcase_23 AC 255 ms
10,496 KB
testcase_24 AC 253 ms
10,240 KB
testcase_25 AC 257 ms
10,496 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 AC 262 ms
5,888 KB
testcase_36 AC 264 ms
5,888 KB
testcase_37 AC 266 ms
5,760 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 262 ms
6,272 KB
testcase_42 AC 258 ms
5,248 KB
testcase_43 AC 260 ms
5,248 KB
testcase_44 AC 262 ms
5,248 KB
testcase_45 AC 264 ms
5,248 KB
testcase_46 AC 259 ms
5,248 KB
testcase_47 AC 260 ms
5,248 KB
testcase_48 AC 254 ms
9,728 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[505][505];

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

  REP(i,1,N+1){
    REP(j,1,505){
      dp[i] += memo[j][i%j];
      dp[i] %= MOD;
    }
    if(v[i] <= 500){
      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