結果

問題 No.1331 Moving Penguin
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 09:31:44
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 735 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-12-28 15:54:25
合計ジャッジ時間 59,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
64,640 KB
testcase_01 AC 47 ms
52,224 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 1,309 ms
91,392 KB
testcase_05 AC 1,364 ms
90,240 KB
testcase_06 AC 1,359 ms
90,624 KB
testcase_07 AC 1,401 ms
90,112 KB
testcase_08 AC 1,364 ms
90,112 KB
testcase_09 AC 1,328 ms
90,240 KB
testcase_10 AC 1,330 ms
90,112 KB
testcase_11 AC 1,446 ms
90,112 KB
testcase_12 TLE -
testcase_13 AC 1,324 ms
90,368 KB
testcase_14 AC 1,348 ms
90,112 KB
testcase_15 AC 1,285 ms
90,368 KB
testcase_16 AC 1,297 ms
90,112 KB
testcase_17 AC 1,368 ms
90,112 KB
testcase_18 AC 1,398 ms
90,112 KB
testcase_19 AC 1,332 ms
89,984 KB
testcase_20 AC 1,284 ms
90,112 KB
testcase_21 AC 1,308 ms
89,856 KB
testcase_22 AC 1,318 ms
90,112 KB
testcase_23 AC 1,340 ms
90,368 KB
testcase_24 AC 1,377 ms
90,368 KB
testcase_25 AC 1,309 ms
90,112 KB
testcase_26 AC 1,304 ms
91,264 KB
testcase_27 AC 1,303 ms
91,264 KB
testcase_28 AC 1,340 ms
91,008 KB
testcase_29 AC 1,325 ms
91,392 KB
testcase_30 AC 295 ms
73,984 KB
testcase_31 AC 600 ms
83,456 KB
testcase_32 AC 244 ms
72,320 KB
testcase_33 AC 408 ms
77,568 KB
testcase_34 AC 823 ms
85,632 KB
testcase_35 TLE -
testcase_36 AC 1,445 ms
90,752 KB
testcase_37 AC 1,455 ms
91,008 KB
testcase_38 AC 317 ms
74,496 KB
testcase_39 AC 1,252 ms
91,136 KB
testcase_40 AC 538 ms
82,048 KB
testcase_41 AC 1,354 ms
90,624 KB
testcase_42 TLE -
testcase_43 AC 1,466 ms
91,008 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 1,306 ms
90,240 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+1) for _ in range(c+1)]
  for i in range(n):
    # マスiに到達するケースを加算
    for j in range(1,min(i,c)+1):
      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