結果

問題 No.1331 Moving Penguin
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 09:26:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-07-21 15:04:49
合計ジャッジ時間 53,180 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
65,152 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 1,217 ms
91,264 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,236 ms
90,368 KB
testcase_11 WA -
testcase_12 AC 1,254 ms
90,112 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1,209 ms
90,112 KB
testcase_21 AC 1,183 ms
90,368 KB
testcase_22 AC 1,223 ms
89,856 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,190 ms
91,264 KB
testcase_27 AC 1,210 ms
91,392 KB
testcase_28 AC 1,200 ms
91,264 KB
testcase_29 AC 1,193 ms
91,776 KB
testcase_30 AC 264 ms
74,112 KB
testcase_31 AC 581 ms
83,200 KB
testcase_32 AC 222 ms
72,704 KB
testcase_33 AC 390 ms
77,312 KB
testcase_34 AC 683 ms
85,760 KB
testcase_35 AC 1,350 ms
90,752 KB
testcase_36 AC 1,329 ms
90,752 KB
testcase_37 WA -
testcase_38 AC 290 ms
74,496 KB
testcase_39 AC 1,160 ms
90,752 KB
testcase_40 AC 477 ms
80,640 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 1,366 ms
90,880 KB
testcase_45 AC 1,430 ms
90,368 KB
testcase_46 AC 1,464 ms
90,752 KB
testcase_47 WA -
testcase_48 AC 1,206 ms
90,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,a):
  dp=[0]*n
  mod=10**9+7
  dp[0]=1
  base=0
  c=int(n**0.5)+1
  ary=[[0]*c for _ in range(c)]
  for i in range(n):
    # マスiに到達するケースを加算
    for j in range(1,min(i,c)):
      dp[i]+=ary[j][i%j]
      dp[i]%=mod
    dp[i]+=base
    dp[i]%=mod
    if i==n-1:break
    k=a[i]
    if k==1:
      base+=dp[i]
      base%=mod
    elif k<c:
      dp[i+1]+=dp[i]
      dp[i+1]%=mod
      ary[k][i%k]+=dp[i]
      ary[k][i%k]%=mod
    else:
      dp[i+1]+=dp[i]
      dp[i+1]%=mod
      ii=i+k
      while ii<n:
        dp[ii]+=dp[i]
        dp[ii]%=mod
        ii+=k
  return dp[-1]

if __name__=='__main__':
  n=int(input())
  a=list(map(int,input().split()))
  ret1=main1(n,a)
  print(ret1)
0