結果

問題 No.1331 Moving Penguin
ユーザー marroncastlemarroncastle
提出日時 2021-01-20 21:18:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 587 ms / 1,500 ms
コード長 533 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-11-07 15:17:20
合計ジャッジ時間 24,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
68,736 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 46 ms
58,496 KB
testcase_04 AC 514 ms
89,216 KB
testcase_05 AC 504 ms
86,016 KB
testcase_06 AC 512 ms
86,016 KB
testcase_07 AC 504 ms
86,144 KB
testcase_08 AC 504 ms
85,632 KB
testcase_09 AC 517 ms
85,632 KB
testcase_10 AC 499 ms
85,632 KB
testcase_11 AC 508 ms
85,632 KB
testcase_12 AC 501 ms
85,504 KB
testcase_13 AC 504 ms
85,632 KB
testcase_14 AC 509 ms
85,504 KB
testcase_15 AC 512 ms
85,760 KB
testcase_16 AC 513 ms
86,016 KB
testcase_17 AC 497 ms
84,736 KB
testcase_18 AC 499 ms
84,992 KB
testcase_19 AC 493 ms
85,248 KB
testcase_20 AC 500 ms
85,248 KB
testcase_21 AC 497 ms
84,736 KB
testcase_22 AC 496 ms
84,864 KB
testcase_23 AC 497 ms
85,504 KB
testcase_24 AC 497 ms
85,504 KB
testcase_25 AC 498 ms
85,888 KB
testcase_26 AC 521 ms
90,112 KB
testcase_27 AC 519 ms
90,240 KB
testcase_28 AC 525 ms
90,496 KB
testcase_29 AC 502 ms
87,680 KB
testcase_30 AC 219 ms
76,160 KB
testcase_31 AC 333 ms
83,328 KB
testcase_32 AC 204 ms
74,880 KB
testcase_33 AC 277 ms
79,488 KB
testcase_34 AC 374 ms
85,120 KB
testcase_35 AC 587 ms
89,728 KB
testcase_36 AC 585 ms
89,856 KB
testcase_37 AC 585 ms
89,984 KB
testcase_38 AC 230 ms
76,544 KB
testcase_39 AC 509 ms
90,240 KB
testcase_40 AC 294 ms
80,384 KB
testcase_41 AC 562 ms
89,856 KB
testcase_42 AC 579 ms
90,112 KB
testcase_43 AC 573 ms
89,856 KB
testcase_44 AC 566 ms
89,728 KB
testcase_45 AC 570 ms
89,728 KB
testcase_46 AC 572 ms
89,984 KB
testcase_47 AC 586 ms
89,728 KB
testcase_48 AC 521 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,os,io
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
N = int(input())
A = list(map(int, input().split()))
n = int(N**.5)+1
cum = [[0]*(201) for _ in range(201)]
dp = [0]*N
dp[-1] = 1
MOD = 10**9+7
for i in range(N-1,-1,-1):
  if A[i]>1 and i<N-1:
    dp[i] += dp[i+1]
  if A[i]>200:
    for j in range(i+A[i],N,A[i]):
      dp[i] += dp[j]
  else:
    dp[i] += cum[A[i]][i%A[i]]
  dp[i] %= MOD
  for k in range(1,201):
    cum[k][i%k] += dp[i]
    cum[k][i%k] %= MOD
print(dp[0])
  
0