結果

問題 No.1331 Moving Penguin
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-01 03:32:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,413 ms / 1,500 ms
コード長 614 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 320,592 KB
最終ジャッジ日時 2024-06-30 06:07:13
合計ジャッジ時間 51,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
72,776 KB
testcase_01 AC 36 ms
52,284 KB
testcase_02 AC 37 ms
53,100 KB
testcase_03 AC 36 ms
53,988 KB
testcase_04 AC 1,216 ms
319,256 KB
testcase_05 AC 1,240 ms
319,336 KB
testcase_06 AC 1,204 ms
317,652 KB
testcase_07 AC 1,200 ms
317,532 KB
testcase_08 AC 1,245 ms
318,688 KB
testcase_09 AC 1,230 ms
317,612 KB
testcase_10 AC 1,215 ms
318,120 KB
testcase_11 AC 1,322 ms
318,152 KB
testcase_12 AC 1,197 ms
318,676 KB
testcase_13 AC 1,199 ms
317,928 KB
testcase_14 AC 1,178 ms
317,864 KB
testcase_15 AC 1,208 ms
318,400 KB
testcase_16 AC 1,182 ms
318,168 KB
testcase_17 AC 1,007 ms
318,008 KB
testcase_18 AC 1,021 ms
318,872 KB
testcase_19 AC 1,037 ms
318,912 KB
testcase_20 AC 1,052 ms
317,676 KB
testcase_21 AC 1,042 ms
319,172 KB
testcase_22 AC 1,012 ms
317,752 KB
testcase_23 AC 1,196 ms
317,980 KB
testcase_24 AC 1,297 ms
318,568 KB
testcase_25 AC 1,164 ms
317,992 KB
testcase_26 AC 1,257 ms
320,492 KB
testcase_27 AC 1,239 ms
320,316 KB
testcase_28 AC 1,253 ms
320,200 KB
testcase_29 AC 1,180 ms
320,592 KB
testcase_30 AC 267 ms
125,260 KB
testcase_31 AC 547 ms
189,412 KB
testcase_32 AC 230 ms
115,688 KB
testcase_33 AC 360 ms
152,020 KB
testcase_34 AC 726 ms
221,996 KB
testcase_35 AC 1,267 ms
319,232 KB
testcase_36 AC 1,284 ms
318,404 KB
testcase_37 AC 1,293 ms
318,352 KB
testcase_38 AC 289 ms
128,696 KB
testcase_39 AC 1,180 ms
307,376 KB
testcase_40 AC 410 ms
169,696 KB
testcase_41 AC 984 ms
318,848 KB
testcase_42 AC 1,267 ms
319,092 KB
testcase_43 AC 1,413 ms
318,768 KB
testcase_44 AC 1,266 ms
318,972 KB
testcase_45 AC 1,296 ms
319,360 KB
testcase_46 AC 1,269 ms
319,556 KB
testcase_47 AC 1,278 ms
320,140 KB
testcase_48 AC 1,187 ms
318,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

N = int(input())
A = list(map(int, input().split()))
sq = int(N ** 0.5) + 1

dp = [0] * (N + 1)
memo = [[0] * N for _ in range(sq+1)]
dp[0] = 1
for i in range(N):
    a = A[i]
    for j in range(1, sq + 1):
        if i - j >= 0:
            memo[j][i] += memo[j][i-j]
            memo[j][i] %= mod
        dp[i] += memo[j][i]
        dp[i] %= mod

    if a > sq:
        for j in range(i + a, N, a):
            dp[j] += dp[i]
            dp[j] %= mod
    else:
        memo[a][i] += dp[i]
        memo[a][i] %= mod

    if a > 1:
        dp[i+1] += dp[i]
        dp[i+1] %= mod

print(dp[N-1])
0