結果

問題 No.1331 Moving Penguin
ユーザー persimmon_t01persimmon_t01
提出日時 2021-01-09 08:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,475 ms / 1,500 ms
コード長 669 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-11-07 15:02:06
合計ジャッジ時間 53,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
64,896 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 1,201 ms
91,392 KB
testcase_05 AC 1,236 ms
90,368 KB
testcase_06 AC 1,238 ms
90,240 KB
testcase_07 AC 1,235 ms
90,624 KB
testcase_08 AC 1,212 ms
90,112 KB
testcase_09 AC 1,225 ms
90,112 KB
testcase_10 AC 1,229 ms
90,112 KB
testcase_11 AC 1,232 ms
89,984 KB
testcase_12 AC 1,232 ms
90,112 KB
testcase_13 AC 1,254 ms
90,240 KB
testcase_14 AC 1,237 ms
89,984 KB
testcase_15 AC 1,206 ms
90,112 KB
testcase_16 AC 1,233 ms
89,984 KB
testcase_17 AC 1,242 ms
90,368 KB
testcase_18 AC 1,225 ms
90,112 KB
testcase_19 AC 1,253 ms
90,112 KB
testcase_20 AC 1,230 ms
90,240 KB
testcase_21 AC 1,216 ms
90,240 KB
testcase_22 AC 1,229 ms
89,984 KB
testcase_23 AC 1,238 ms
90,112 KB
testcase_24 AC 1,232 ms
89,984 KB
testcase_25 AC 1,224 ms
89,856 KB
testcase_26 AC 1,210 ms
91,520 KB
testcase_27 AC 1,216 ms
91,648 KB
testcase_28 AC 1,198 ms
91,520 KB
testcase_29 AC 1,206 ms
91,264 KB
testcase_30 AC 275 ms
73,984 KB
testcase_31 AC 568 ms
83,072 KB
testcase_32 AC 235 ms
73,216 KB
testcase_33 AC 401 ms
77,952 KB
testcase_34 AC 710 ms
86,016 KB
testcase_35 AC 1,342 ms
91,136 KB
testcase_36 AC 1,350 ms
90,880 KB
testcase_37 AC 1,346 ms
90,752 KB
testcase_38 AC 302 ms
75,520 KB
testcase_39 AC 1,164 ms
91,136 KB
testcase_40 AC 474 ms
80,512 KB
testcase_41 AC 1,248 ms
91,008 KB
testcase_42 AC 1,365 ms
90,880 KB
testcase_43 AC 1,392 ms
90,624 KB
testcase_44 AC 1,380 ms
90,880 KB
testcase_45 AC 1,450 ms
90,752 KB
testcase_46 AC 1,452 ms
90,880 KB
testcase_47 AC 1,475 ms
90,624 KB
testcase_48 AC 1,240 ms
90,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,a):
  mod=10**9+7
  dp=[0]*(n+1)
  dp[1]=1
  bd=int(n**0.5)
  memo=[[0]*(bd+1) for _ in range(bd+1)]
  dp[1]=1
  num1=0
  for i in range(1,n+1):
    x=a[i-1]
    for j in range(1,bd+1):
      dp[i]+=memo[j][i%j]
      dp[i]%=mod
    dp[i]+=num1
    dp[i]%=mod
    if dp[i]==0:continue
    if i==n:break
    dp[i+1]+=dp[i]
    dp[i+1]%=mod
    if x>bd:
      now=i+x
      while now<=n:
        dp[now]+=dp[i]
        dp[now]%=mod
        now+=x
    elif x==1:
      num1+=dp[i]
      num1%=mod
      dp[i+1]-=dp[i]
    else:
      memo[x][i%x]+=dp[i]
      memo[x][i%x]%=mod
  return dp[n]

n=int(input())
a=list(map(int,input().split()))
print(main1(n,a))
0