結果

問題 No.1331 Moving Penguin
ユーザー rlangevinrlangevin
提出日時 2023-09-29 00:04:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 785 ms / 1,500 ms
コード長 539 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-07-21 18:48:00
合計ジャッジ時間 30,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
65,920 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 690 ms
90,112 KB
testcase_05 AC 684 ms
86,656 KB
testcase_06 AC 680 ms
87,168 KB
testcase_07 AC 685 ms
86,912 KB
testcase_08 AC 684 ms
86,272 KB
testcase_09 AC 682 ms
86,656 KB
testcase_10 AC 684 ms
86,016 KB
testcase_11 AC 687 ms
86,272 KB
testcase_12 AC 680 ms
86,528 KB
testcase_13 AC 680 ms
86,656 KB
testcase_14 AC 681 ms
86,400 KB
testcase_15 AC 685 ms
86,528 KB
testcase_16 AC 683 ms
86,528 KB
testcase_17 AC 684 ms
85,632 KB
testcase_18 AC 680 ms
85,888 KB
testcase_19 AC 683 ms
86,016 KB
testcase_20 AC 679 ms
85,760 KB
testcase_21 AC 684 ms
85,376 KB
testcase_22 AC 681 ms
85,760 KB
testcase_23 AC 685 ms
86,528 KB
testcase_24 AC 680 ms
86,144 KB
testcase_25 AC 682 ms
86,400 KB
testcase_26 AC 707 ms
91,520 KB
testcase_27 AC 704 ms
91,648 KB
testcase_28 AC 711 ms
91,648 KB
testcase_29 AC 688 ms
88,704 KB
testcase_30 AC 181 ms
74,240 KB
testcase_31 AC 338 ms
83,968 KB
testcase_32 AC 162 ms
73,344 KB
testcase_33 AC 246 ms
77,696 KB
testcase_34 AC 416 ms
86,400 KB
testcase_35 AC 744 ms
91,100 KB
testcase_36 AC 750 ms
91,136 KB
testcase_37 AC 745 ms
91,008 KB
testcase_38 AC 193 ms
75,392 KB
testcase_39 AC 673 ms
91,392 KB
testcase_40 AC 289 ms
80,000 KB
testcase_41 AC 682 ms
86,656 KB
testcase_42 AC 741 ms
91,136 KB
testcase_43 AC 751 ms
91,392 KB
testcase_44 AC 748 ms
91,184 KB
testcase_45 AC 785 ms
91,136 KB
testcase_46 AC 778 ms
91,140 KB
testcase_47 AC 785 ms
91,008 KB
testcase_48 AC 690 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
mod = 10**9 + 7
B = int(N ** 0.5)
dp = [0] * N
dp_sum = [[0] * B for _ in range(B + 1)]
dp[0] = 1
for i in range(N):
    if i:
        if A[i - 1] != 1:
            dp[i] += dp[i - 1]
            dp[i] %= mod
    for b in range(1, B + 1):
        dp[i] += dp_sum[b][i%b]
    if A[i] <= B:
        dp_sum[A[i]][i%A[i]] += dp[i]
        dp_sum[A[i]][i%A[i]] %= mod
    else:
        for j in range(i + A[i], N, A[i]):
            dp[j] += dp[i]
            dp[j] %= mod

print(dp[-1]%mod)
0