結果

問題 No.1331 Moving Penguin
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-01 03:34:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 1,500 ms
コード長 631 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 152,192 KB
最終ジャッジ日時 2024-11-07 15:24:45
合計ジャッジ時間 16,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,936 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 304 ms
150,016 KB
testcase_05 AC 391 ms
151,040 KB
testcase_06 AC 394 ms
150,656 KB
testcase_07 AC 388 ms
150,656 KB
testcase_08 AC 295 ms
147,968 KB
testcase_09 AC 298 ms
147,968 KB
testcase_10 AC 292 ms
147,968 KB
testcase_11 AC 296 ms
147,968 KB
testcase_12 AC 297 ms
148,480 KB
testcase_13 AC 294 ms
148,480 KB
testcase_14 AC 295 ms
147,968 KB
testcase_15 AC 298 ms
148,224 KB
testcase_16 AC 295 ms
147,968 KB
testcase_17 AC 264 ms
150,784 KB
testcase_18 AC 275 ms
150,400 KB
testcase_19 AC 273 ms
150,784 KB
testcase_20 AC 266 ms
150,400 KB
testcase_21 AC 276 ms
150,400 KB
testcase_22 AC 269 ms
150,400 KB
testcase_23 AC 295 ms
148,224 KB
testcase_24 AC 295 ms
148,352 KB
testcase_25 AC 295 ms
148,352 KB
testcase_26 AC 331 ms
152,064 KB
testcase_27 AC 333 ms
152,192 KB
testcase_28 AC 328 ms
151,680 KB
testcase_29 AC 296 ms
150,144 KB
testcase_30 AC 165 ms
95,744 KB
testcase_31 AC 223 ms
117,632 KB
testcase_32 AC 149 ms
91,776 KB
testcase_33 AC 186 ms
105,344 KB
testcase_34 AC 247 ms
126,464 KB
testcase_35 AC 412 ms
150,912 KB
testcase_36 AC 409 ms
150,912 KB
testcase_37 AC 405 ms
151,040 KB
testcase_38 AC 162 ms
96,768 KB
testcase_39 AC 329 ms
149,248 KB
testcase_40 AC 194 ms
111,232 KB
testcase_41 AC 377 ms
151,424 KB
testcase_42 AC 413 ms
151,040 KB
testcase_43 AC 407 ms
151,168 KB
testcase_44 AC 406 ms
151,552 KB
testcase_45 AC 413 ms
151,552 KB
testcase_46 AC 411 ms
150,912 KB
testcase_47 AC 415 ms
151,168 KB
testcase_48 AC 298 ms
147,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

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

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