結果

問題 No.1331 Moving Penguin
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 09:02:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 614 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 499,836 KB
最終ジャッジ日時 2024-07-21 14:36:24
合計ジャッジ時間 20,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,936 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 90 ms
103,680 KB
testcase_05 TLE -
testcase_06 AC 1,440 ms
432,980 KB
testcase_07 AC 1,389 ms
432,464 KB
testcase_08 AC 113 ms
105,536 KB
testcase_09 AC 114 ms
105,240 KB
testcase_10 AC 128 ms
104,972 KB
testcase_11 AC 123 ms
99,948 KB
testcase_12 AC 124 ms
100,052 KB
testcase_13 AC 118 ms
100,828 KB
testcase_14 AC 210 ms
131,504 KB
testcase_15 AC 208 ms
131,752 KB
testcase_16 AC 209 ms
131,612 KB
testcase_17 AC 129 ms
99,588 KB
testcase_18 AC 126 ms
100,288 KB
testcase_19 AC 126 ms
101,180 KB
testcase_20 AC 95 ms
97,024 KB
testcase_21 AC 96 ms
95,616 KB
testcase_22 AC 97 ms
96,640 KB
testcase_23 AC 137 ms
100,328 KB
testcase_24 AC 133 ms
101,232 KB
testcase_25 AC 133 ms
101,320 KB
testcase_26 AC 309 ms
108,472 KB
testcase_27 AC 321 ms
112,296 KB
testcase_28 AC 325 ms
111,076 KB
testcase_29 AC 71 ms
85,376 KB
testcase_30 AC 133 ms
82,816 KB
testcase_31 AC 187 ms
92,500 KB
testcase_32 AC 125 ms
82,200 KB
testcase_33 AC 178 ms
90,496 KB
testcase_34 AC 203 ms
95,084 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 115 ms
82,944 KB
testcase_39 AC 295 ms
114,236 KB
testcase_40 AC 177 ms
88,572 KB
testcase_41 TLE -
testcase_42 AC 341 ms
168,272 KB
testcase_43 AC 353 ms
168,484 KB
testcase_44 AC 349 ms
167,600 KB
testcase_45 AC 146 ms
100,148 KB
testcase_46 AC 147 ms
100,228 KB
testcase_47 AC 150 ms
99,160 KB
testcase_48 AC 65 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp=[0]*n
mod=10**9+7
dp[0]=1
ary=[{} for i in range(n)]
base=0
for i in range(n):
  # マスiに到達するケースを加算
  if ary[i]:
    for k,v in ary[i].items():
      dp[i]=(dp[i]+v)%mod
      if i+k<n:
        if k in ary[i+k]:
          ary[i+k][k]+=v
        else:
          ary[i+k][k]=v
  dp[i]+=base
  dp[i]%=mod
  if i==n-1:break
  k=a[i]
  if k==1:
    base+=dp[i]
    base%=mod
  else:
    dp[i+1]+=dp[i]
    if i+k<n:
      if k in ary[i+k]:
        ary[i+k][k]+=dp[i]
        ary[i+k][k]%=mod
      else:
        ary[i+k][k]=dp[i]
print(dp[-1])
0