結果

問題 No.1331 Moving Penguin
ユーザー titiatitia
提出日時 2021-01-08 22:22:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,460 ms / 1,500 ms
コード長 532 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 344,008 KB
最終ジャッジ日時 2024-11-16 13:04:30
合計ジャッジ時間 57,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
90,240 KB
testcase_01 AC 44 ms
57,344 KB
testcase_02 AC 44 ms
57,344 KB
testcase_03 AC 44 ms
57,344 KB
testcase_04 AC 1,388 ms
343,676 KB
testcase_05 AC 1,376 ms
343,076 KB
testcase_06 AC 1,367 ms
343,200 KB
testcase_07 AC 1,366 ms
342,816 KB
testcase_08 AC 1,447 ms
342,108 KB
testcase_09 AC 1,413 ms
342,092 KB
testcase_10 AC 1,333 ms
342,352 KB
testcase_11 AC 1,354 ms
342,236 KB
testcase_12 AC 1,350 ms
342,096 KB
testcase_13 AC 1,341 ms
342,344 KB
testcase_14 AC 1,361 ms
342,140 KB
testcase_15 AC 1,403 ms
342,140 KB
testcase_16 AC 1,350 ms
342,144 KB
testcase_17 AC 1,035 ms
342,232 KB
testcase_18 AC 1,107 ms
342,608 KB
testcase_19 AC 1,132 ms
342,224 KB
testcase_20 AC 1,076 ms
342,416 KB
testcase_21 AC 1,110 ms
342,228 KB
testcase_22 AC 1,094 ms
342,228 KB
testcase_23 AC 1,376 ms
341,844 KB
testcase_24 AC 1,361 ms
342,104 KB
testcase_25 AC 1,349 ms
342,104 KB
testcase_26 AC 1,422 ms
343,616 KB
testcase_27 AC 1,404 ms
344,008 KB
testcase_28 AC 1,406 ms
343,680 KB
testcase_29 AC 1,375 ms
343,856 KB
testcase_30 AC 522 ms
166,528 KB
testcase_31 AC 913 ms
237,952 KB
testcase_32 AC 429 ms
154,496 KB
testcase_33 AC 609 ms
198,784 KB
testcase_34 AC 1,061 ms
251,080 KB
testcase_35 AC 1,445 ms
343,792 KB
testcase_36 AC 1,460 ms
343,636 KB
testcase_37 AC 1,436 ms
343,256 KB
testcase_38 AC 536 ms
171,264 KB
testcase_39 AC 1,384 ms
334,332 KB
testcase_40 AC 669 ms
217,472 KB
testcase_41 AC 1,338 ms
343,060 KB
testcase_42 AC 1,325 ms
343,252 KB
testcase_43 AC 1,361 ms
342,988 KB
testcase_44 AC 1,347 ms
343,128 KB
testcase_45 AC 1,352 ms
343,580 KB
testcase_46 AC 1,349 ms
343,252 KB
testcase_47 AC 1,342 ms
343,256 KB
testcase_48 AC 1,328 ms
342,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
mod=10**9+7


DP=[[0]*(N+1) for i in range(351)]
DP[0][0]=1

for i in range(N):
    a=A[i]
    for j in range(1,351):
        if i-j>=0:
            DP[j][i]+=DP[j][i-j]
            DP[j][i]%=mod

            DP[0][i]+=DP[j][i]
            DP[0][i]%=mod
            
    if a>350:
        for j in range(i+a,N,a):
            DP[0][j]+=DP[0][i]

    else:
        DP[a][i]+=DP[0][i]

    if a!=1:
        DP[0][i+1]+=DP[0][i]

print(DP[0][N-1])
0