結果

問題 No.1331 Moving Penguin
ユーザー convexineqconvexineq
提出日時 2021-01-08 23:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 1,500 ms
コード長 411 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 94,008 KB
最終ジャッジ日時 2024-11-07 14:57:55
合計ジャッジ時間 21,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
67,224 KB
testcase_01 AC 39 ms
52,544 KB
testcase_02 AC 39 ms
52,748 KB
testcase_03 AC 43 ms
59,884 KB
testcase_04 AC 451 ms
94,008 KB
testcase_05 AC 443 ms
89,140 KB
testcase_06 AC 439 ms
89,872 KB
testcase_07 AC 439 ms
89,716 KB
testcase_08 AC 451 ms
89,888 KB
testcase_09 AC 455 ms
89,792 KB
testcase_10 AC 441 ms
88,804 KB
testcase_11 AC 444 ms
88,748 KB
testcase_12 AC 445 ms
89,336 KB
testcase_13 AC 450 ms
90,216 KB
testcase_14 AC 448 ms
88,956 KB
testcase_15 AC 444 ms
89,504 KB
testcase_16 AC 445 ms
88,896 KB
testcase_17 AC 434 ms
89,840 KB
testcase_18 AC 419 ms
89,788 KB
testcase_19 AC 436 ms
89,784 KB
testcase_20 AC 452 ms
89,996 KB
testcase_21 AC 454 ms
89,732 KB
testcase_22 AC 454 ms
89,672 KB
testcase_23 AC 444 ms
89,724 KB
testcase_24 AC 443 ms
89,448 KB
testcase_25 AC 446 ms
89,732 KB
testcase_26 AC 453 ms
92,756 KB
testcase_27 AC 458 ms
92,604 KB
testcase_28 AC 454 ms
92,660 KB
testcase_29 AC 437 ms
91,292 KB
testcase_30 AC 188 ms
76,344 KB
testcase_31 AC 280 ms
82,340 KB
testcase_32 AC 169 ms
73,744 KB
testcase_33 AC 233 ms
79,568 KB
testcase_34 AC 327 ms
87,156 KB
testcase_35 AC 508 ms
92,048 KB
testcase_36 AC 502 ms
92,060 KB
testcase_37 AC 503 ms
92,112 KB
testcase_38 AC 192 ms
76,716 KB
testcase_39 AC 442 ms
92,492 KB
testcase_40 AC 253 ms
80,524 KB
testcase_41 AC 501 ms
92,688 KB
testcase_42 AC 506 ms
92,120 KB
testcase_43 AC 500 ms
92,116 KB
testcase_44 AC 500 ms
92,112 KB
testcase_45 AC 501 ms
92,160 KB
testcase_46 AC 496 ms
92,448 KB
testcase_47 AC 503 ms
92,084 KB
testcase_48 AC 434 ms
89,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
M = 200
MOD = 10**9+7
laz = [[0]*i for i in range(M)]
dp = [0]*(n+1)
dp[0] = 1
for i in range(n):
    for j in range(1,M):
        dp[i] += laz[j][i%j]
    dp[i] %= MOD
    ai = a[i]
    if ai >= M:
        for k in range(i+ai,n+1,ai):
            dp[k] += dp[i]
    else:
        laz[ai][i%ai] += dp[i]
    if ai != 1:
        dp[i+1] += dp[i]
print(dp[n-1]%MOD)
0