結果

問題 No.1331 Moving Penguin
ユーザー persimmon_t01persimmon_t01
提出日時 2021-01-08 22:18:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,248 KB
最終ジャッジ日時 2024-11-16 12:53:20
合計ジャッジ時間 61,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
67,072 KB
testcase_01 AC 41 ms
132,864 KB
testcase_02 AC 40 ms
57,088 KB
testcase_03 AC 40 ms
133,248 KB
testcase_04 AC 74 ms
86,272 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 91 ms
91,776 KB
testcase_27 AC 96 ms
85,504 KB
testcase_28 AC 92 ms
86,528 KB
testcase_29 AC 75 ms
81,024 KB
testcase_30 AC 64 ms
68,992 KB
testcase_31 AC 76 ms
74,624 KB
testcase_32 AC 66 ms
68,224 KB
testcase_33 AC 68 ms
71,168 KB
testcase_34 AC 78 ms
78,464 KB
testcase_35 AC 322 ms
84,864 KB
testcase_36 AC 325 ms
84,224 KB
testcase_37 AC 325 ms
84,480 KB
testcase_38 AC 68 ms
69,120 KB
testcase_39 AC 95 ms
84,864 KB
testcase_40 AC 72 ms
72,960 KB
testcase_41 AC 385 ms
84,352 KB
testcase_42 AC 321 ms
84,608 KB
testcase_43 AC 323 ms
84,480 KB
testcase_44 AC 318 ms
84,608 KB
testcase_45 AC 315 ms
84,480 KB
testcase_46 AC 314 ms
84,864 KB
testcase_47 AC 317 ms
84,480 KB
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(n,a):
  mod=10**9+7
  dp=[0]*(n+1)
  dp[1]=1
  for i in range(1,n):
    if dp[i]==0:continue
    x=a[i-1]
    dp[i+1]+=dp[i]
    dp[i+1]%=mod
    now=i+x
    if now==i+1:now+=1
    while now<=n:
      dp[now]+=dp[i]
      dp[now]%=mod
      now+=x
  return dp[n]
n=int(input())
a=list(map(int,input().split()))
print(main(n,a))
0