結果

問題 No.1331 Moving Penguin
ユーザー どららどらら
提出日時 2021-01-08 23:19:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,054 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 179,984 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-11-16 17:52:54
合計ジャッジ時間 57,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
9,856 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 25 ms
9,984 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 24 ms
10,112 KB
testcase_11 AC 26 ms
10,496 KB
testcase_12 AC 27 ms
9,088 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 60 ms
9,344 KB
testcase_15 AC 62 ms
10,496 KB
testcase_16 AC 61 ms
8,960 KB
testcase_17 AC 24 ms
10,496 KB
testcase_18 AC 23 ms
9,216 KB
testcase_19 AC 23 ms
10,496 KB
testcase_20 AC 24 ms
9,856 KB
testcase_21 AC 24 ms
10,496 KB
testcase_22 AC 23 ms
12,672 KB
testcase_23 AC 35 ms
10,496 KB
testcase_24 AC 34 ms
10,496 KB
testcase_25 AC 34 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 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 384 ms
5,376 KB
testcase_43 AC 386 ms
5,504 KB
testcase_44 AC 389 ms
5,504 KB
testcase_45 AC 127 ms
5,248 KB
testcase_46 AC 123 ms
5,248 KB
testcase_47 AC 122 ms
5,248 KB
testcase_48 AC 22 ms
9,344 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];

map<ll,map<ll,ll>> memo;

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

  REP(i,1,N+1){
    FOR(it,memo){
      int j = it->first;
      if((it->second).count(i%j) > 0){
        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