結果

問題 No.1331 Moving Penguin
ユーザー chineristACchineristAC
提出日時 2020-10-30 16:25:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,078 ms / 1,500 ms
コード長 763 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 340,004 KB
最終ジャッジ日時 2024-11-07 14:32:12
合計ジャッジ時間 38,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
86,656 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 44 ms
57,216 KB
testcase_03 AC 44 ms
57,472 KB
testcase_04 AC 880 ms
338,080 KB
testcase_05 AC 840 ms
338,044 KB
testcase_06 AC 836 ms
338,308 KB
testcase_07 AC 879 ms
338,300 KB
testcase_08 AC 853 ms
337,884 KB
testcase_09 AC 848 ms
337,892 KB
testcase_10 AC 839 ms
338,148 KB
testcase_11 AC 850 ms
338,016 KB
testcase_12 AC 833 ms
338,140 KB
testcase_13 AC 823 ms
337,884 KB
testcase_14 AC 834 ms
338,020 KB
testcase_15 AC 837 ms
337,888 KB
testcase_16 AC 834 ms
338,412 KB
testcase_17 AC 839 ms
338,020 KB
testcase_18 AC 835 ms
338,148 KB
testcase_19 AC 824 ms
338,056 KB
testcase_20 AC 825 ms
338,232 KB
testcase_21 AC 843 ms
338,276 KB
testcase_22 AC 849 ms
338,024 KB
testcase_23 AC 859 ms
338,280 KB
testcase_24 AC 857 ms
337,892 KB
testcase_25 AC 839 ms
337,884 KB
testcase_26 AC 868 ms
338,136 KB
testcase_27 AC 849 ms
338,324 KB
testcase_28 AC 862 ms
337,940 KB
testcase_29 AC 845 ms
338,048 KB
testcase_30 AC 332 ms
160,768 KB
testcase_31 AC 497 ms
217,064 KB
testcase_32 AC 290 ms
141,952 KB
testcase_33 AC 403 ms
179,584 KB
testcase_34 AC 593 ms
251,360 KB
testcase_35 AC 948 ms
338,204 KB
testcase_36 AC 958 ms
337,956 KB
testcase_37 AC 934 ms
338,212 KB
testcase_38 AC 341 ms
160,768 KB
testcase_39 AC 821 ms
329,680 KB
testcase_40 AC 459 ms
198,272 KB
testcase_41 AC 830 ms
337,956 KB
testcase_42 AC 942 ms
338,336 KB
testcase_43 AC 937 ms
338,084 KB
testcase_44 AC 956 ms
338,332 KB
testcase_45 AC 1,074 ms
339,876 KB
testcase_46 AC 1,061 ms
339,356 KB
testcase_47 AC 1,078 ms
340,004 KB
testcase_48 AC 840 ms
338,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0 for i in range(N+1)]
data = [[0 for i in range(320)] for j in range(N)]
dp[-1] = 1
for j in range(1,min(N,320)):
    data[N-j][j] = 1

for i in range(N-1,0,-1):
    if A[i]**2 > N:
        for j in range(1,N+1):
            tmp = i + j * A[i]
            if tmp<N+1:
                dp[i] += dp[tmp]
                dp[i] %= mod
            else:
                break
        if A[i]!=1:
            dp[i] += dp[i+1]
            dp[i] %= mod
    else:
        dp[i] = data[i][A[i]]
        if A[i]!=1:
            dp[i] += dp[i+1]
            dp[i] %= mod

    for j in range(1,min(320,i)):
        data[i - j][j] = data[i][j] + dp[i]
        data[i - j][j] %= mod

print(dp[1])
0