結果

問題 No.1331 Moving Penguin
ユーザー pyonthpyonth
提出日時 2021-01-08 21:50:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,128 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 204,516 KB
実行使用メモリ 18,120 KB
最終ジャッジ日時 2024-11-16 11:11:16
合計ジャッジ時間 52,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 2 ms
11,048 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
11,040 KB
testcase_04 AC 11 ms
13,632 KB
testcase_05 AC 469 ms
11,048 KB
testcase_06 AC 454 ms
13,636 KB
testcase_07 AC 464 ms
11,040 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 12 ms
13,636 KB
testcase_27 AC 12 ms
6,820 KB
testcase_28 AC 13 ms
6,820 KB
testcase_29 AC 12 ms
6,816 KB
testcase_30 AC 5 ms
6,820 KB
testcase_31 AC 8 ms
6,816 KB
testcase_32 AC 4 ms
6,816 KB
testcase_33 AC 7 ms
6,820 KB
testcase_34 AC 9 ms
6,816 KB
testcase_35 AC 46 ms
6,816 KB
testcase_36 AC 47 ms
6,816 KB
testcase_37 AC 44 ms
6,820 KB
testcase_38 AC 5 ms
6,816 KB
testcase_39 AC 12 ms
6,816 KB
testcase_40 AC 6 ms
6,816 KB
testcase_41 AC 46 ms
6,816 KB
testcase_42 AC 43 ms
6,816 KB
testcase_43 AC 44 ms
6,816 KB
testcase_44 AC 44 ms
6,816 KB
testcase_45 AC 43 ms
6,816 KB
testcase_46 AC 43 ms
6,816 KB
testcase_47 AC 43 ms
6,820 KB
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define repl(i, l, r) for (ll i = (l); i < (r); i++)
#define rep(i, n) repl(i, 0, n)
#define CST(x) cout << fixed << setprecision(x)
using ll = long long;
constexpr ll MOD = 1000000007;
constexpr int inf = 1e9 + 10;
constexpr ll INF = (ll)4e18 + 10;
constexpr int dx[9] = {1, 0, -1, 0, 1, -1, -1, 1, 0};
constexpr int dy[9] = {0, 1, 0, -1, 1, 1, -1, -1, 0};
template <class T>
inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template <class T>
inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
int main() {
    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(false);

    int n;
    cin >> n;
    int a[n];
    rep(i, n) cin >> a[i];
    vector<ll> dp(n);
    dp[0] = 1;
    rep(i, n - 1) {
        if (dp[i] == 0) continue;
        for (int j = i + a[i]; j <= n; j += a[i]) {
            dp[j] += dp[i];
            dp[j] %= MOD;
        }
        if (a[i] > 1) dp[i + 1] = (dp[i + 1] + dp[i]) % MOD;
    }
    cout << dp[n - 1] << endl;
    return 0;
}
0