結果

問題 No.1331 Moving Penguin
ユーザー penguinmanpenguinman
提出日時 2020-10-28 22:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 848 ms / 1,500 ms
コード長 583 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 91,588 KB
最終ジャッジ日時 2024-11-07 14:31:31
合計ジャッジ時間 32,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
66,176 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 693 ms
91,100 KB
testcase_05 AC 700 ms
87,668 KB
testcase_06 AC 705 ms
87,552 KB
testcase_07 AC 696 ms
87,424 KB
testcase_08 AC 697 ms
87,280 KB
testcase_09 AC 698 ms
86,656 KB
testcase_10 AC 716 ms
87,040 KB
testcase_11 AC 700 ms
87,296 KB
testcase_12 AC 697 ms
87,296 KB
testcase_13 AC 697 ms
86,668 KB
testcase_14 AC 700 ms
86,988 KB
testcase_15 AC 692 ms
86,912 KB
testcase_16 AC 697 ms
86,912 KB
testcase_17 AC 687 ms
86,528 KB
testcase_18 AC 688 ms
86,400 KB
testcase_19 AC 691 ms
86,272 KB
testcase_20 AC 702 ms
86,144 KB
testcase_21 AC 698 ms
86,144 KB
testcase_22 AC 687 ms
86,380 KB
testcase_23 AC 685 ms
86,912 KB
testcase_24 AC 695 ms
87,296 KB
testcase_25 AC 707 ms
87,296 KB
testcase_26 AC 716 ms
91,336 KB
testcase_27 AC 702 ms
91,392 KB
testcase_28 AC 709 ms
91,588 KB
testcase_29 AC 694 ms
89,216 KB
testcase_30 AC 183 ms
74,240 KB
testcase_31 AC 340 ms
81,768 KB
testcase_32 AC 163 ms
73,216 KB
testcase_33 AC 249 ms
77,312 KB
testcase_34 AC 426 ms
85,772 KB
testcase_35 AC 768 ms
90,880 KB
testcase_36 AC 759 ms
91,008 KB
testcase_37 AC 796 ms
91,264 KB
testcase_38 AC 197 ms
75,520 KB
testcase_39 AC 673 ms
91,264 KB
testcase_40 AC 284 ms
79,616 KB
testcase_41 AC 692 ms
87,680 KB
testcase_42 AC 781 ms
91,264 KB
testcase_43 AC 769 ms
90,772 KB
testcase_44 AC 776 ms
90,744 KB
testcase_45 AC 823 ms
91,032 KB
testcase_46 AC 835 ms
91,264 KB
testcase_47 AC 848 ms
90,848 KB
testcase_48 AC 707 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
mod=(int)(1e9+7)
A=list(map(int,input().split()))
dp=[0]*N
dp[0]=1
M=int(math.sqrt(N))
Sum=[[0]*(M+1) for i in range(M+1)]
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(M+1):
        if j>0:
            dp[i]+=Sum[j][i%j]
            dp[i]%=mod
    if A[i]<=M:
        Sum[A[i]][i%A[i]]+=dp[i]
        Sum[A[i]][i%A[i]]%=mod
    else:
        for j in range(N):
            X=j*A[i]+A[i]+i
            if X>=N:
                break
            dp[X]+=dp[i]
            dp[X]%=mod
print(dp[N-1])
0