結果

問題 No.1331 Moving Penguin
ユーザー roarisroaris
提出日時 2021-06-03 18:48:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 828 ms / 1,500 ms
コード長 570 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-11-07 15:22:57
合計ジャッジ時間 33,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
66,304 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 744 ms
91,264 KB
testcase_05 AC 730 ms
86,784 KB
testcase_06 AC 732 ms
86,912 KB
testcase_07 AC 734 ms
86,784 KB
testcase_08 AC 734 ms
86,400 KB
testcase_09 AC 737 ms
86,272 KB
testcase_10 AC 730 ms
86,400 KB
testcase_11 AC 731 ms
86,656 KB
testcase_12 AC 731 ms
86,528 KB
testcase_13 AC 727 ms
86,400 KB
testcase_14 AC 732 ms
86,400 KB
testcase_15 AC 729 ms
86,400 KB
testcase_16 AC 735 ms
86,656 KB
testcase_17 AC 734 ms
85,632 KB
testcase_18 AC 727 ms
85,760 KB
testcase_19 AC 727 ms
85,760 KB
testcase_20 AC 726 ms
85,760 KB
testcase_21 AC 729 ms
85,760 KB
testcase_22 AC 730 ms
85,888 KB
testcase_23 AC 732 ms
86,400 KB
testcase_24 AC 733 ms
86,272 KB
testcase_25 AC 734 ms
86,272 KB
testcase_26 AC 745 ms
91,008 KB
testcase_27 AC 733 ms
91,008 KB
testcase_28 AC 740 ms
91,008 KB
testcase_29 AC 731 ms
88,448 KB
testcase_30 AC 192 ms
74,240 KB
testcase_31 AC 368 ms
83,584 KB
testcase_32 AC 172 ms
73,344 KB
testcase_33 AC 345 ms
77,696 KB
testcase_34 AC 443 ms
86,016 KB
testcase_35 AC 784 ms
91,008 KB
testcase_36 AC 787 ms
91,008 KB
testcase_37 AC 791 ms
90,752 KB
testcase_38 AC 211 ms
75,648 KB
testcase_39 AC 704 ms
90,880 KB
testcase_40 AC 307 ms
80,128 KB
testcase_41 AC 736 ms
87,552 KB
testcase_42 AC 787 ms
90,752 KB
testcase_43 AC 792 ms
90,752 KB
testcase_44 AC 787 ms
90,624 KB
testcase_45 AC 819 ms
90,624 KB
testcase_46 AC 828 ms
90,752 KB
testcase_47 AC 825 ms
90,624 KB
testcase_48 AC 735 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
M = int(N**0.5)
dp = [0]*N
dp[0] = 1
acc = [[0]*M for _ in range(M)]
MOD = 10**9+7

for i in range(N):
    if i>0 and A[i-1]>1:
        dp[i] += dp[i-1]
        dp[i] %= MOD
        
    for j in range(1, M):
        dp[i] += acc[j][(i+1)%j]
        dp[i] %= MOD
    
    if A[i]>=M:
        for j in range(i+A[i], N, A[i]):
            dp[j] += dp[i]
            dp[j] %= MOD
    else:
        acc[A[i]][(i+1)%A[i]] += dp[i]
        acc[A[i]][(i+1)%A[i]] %= MOD

print(dp[N-1])
0