結果

問題 No.1331 Moving Penguin
ユーザー penguinmanpenguinman
提出日時 2020-10-15 02:25:22
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 581 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-10-11 11:38:47
合計ジャッジ時間 63,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
70,016 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 1,313 ms
92,288 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,329 ms
91,264 KB
testcase_09 AC 1,314 ms
91,264 KB
testcase_10 AC 1,310 ms
91,264 KB
testcase_11 AC 1,314 ms
91,520 KB
testcase_12 AC 1,317 ms
91,392 KB
testcase_13 AC 1,316 ms
91,008 KB
testcase_14 AC 1,333 ms
91,392 KB
testcase_15 AC 1,325 ms
91,264 KB
testcase_16 AC 1,332 ms
91,392 KB
testcase_17 AC 1,291 ms
88,320 KB
testcase_18 AC 1,299 ms
88,576 KB
testcase_19 AC 1,293 ms
88,576 KB
testcase_20 AC 1,298 ms
91,264 KB
testcase_21 AC 1,313 ms
91,136 KB
testcase_22 AC 1,301 ms
91,264 KB
testcase_23 AC 1,322 ms
91,136 KB
testcase_24 AC 1,329 ms
91,392 KB
testcase_25 AC 1,321 ms
91,648 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,282 ms
90,112 KB
testcase_30 AC 379 ms
80,512 KB
testcase_31 AC 737 ms
84,352 KB
testcase_32 AC 326 ms
79,872 KB
testcase_33 AC 522 ms
82,560 KB
testcase_34 AC 896 ms
86,784 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 401 ms
80,640 KB
testcase_39 TLE -
testcase_40 AC 616 ms
83,328 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 1,309 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
mod=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(int(dp[N-1]))
0