結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
11,552 KB
testcase_03 AC 2 ms
13,632 KB
testcase_04 TLE -
testcase_05 AC 424 ms
13,632 KB
testcase_06 AC 423 ms
11,680 KB
testcase_07 AC 422 ms
13,636 KB
testcase_08 AC 33 ms
11,556 KB
testcase_09 AC 33 ms
11,680 KB
testcase_10 AC 33 ms
11,428 KB
testcase_11 AC 37 ms
13,644 KB
testcase_12 AC 37 ms
10,532 KB
testcase_13 AC 37 ms
13,636 KB
testcase_14 AC 63 ms
10,916 KB
testcase_15 AC 64 ms
13,644 KB
testcase_16 AC 64 ms
10,532 KB
testcase_17 AC 32 ms
13,644 KB
testcase_18 AC 31 ms
10,784 KB
testcase_19 AC 31 ms
13,640 KB
testcase_20 AC 31 ms
11,424 KB
testcase_21 AC 32 ms
13,648 KB
testcase_22 AC 32 ms
11,552 KB
testcase_23 AC 45 ms
13,640 KB
testcase_24 AC 45 ms
11,684 KB
testcase_25 AC 45 ms
13,640 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 515 ms
13,860 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 29 ms
11,552 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];

unordered_map<ll,unordered_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] <= 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