結果

問題 No.1331 Moving Penguin
ユーザー googol_S0googol_S0
提出日時 2021-01-08 22:20:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 869 ms / 1,500 ms
コード長 500 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-11-07 14:48:53
合計ジャッジ時間 33,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
71,424 KB
testcase_01 AC 39 ms
53,096 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 AC 44 ms
58,880 KB
testcase_04 AC 677 ms
91,184 KB
testcase_05 AC 794 ms
90,284 KB
testcase_06 AC 793 ms
90,468 KB
testcase_07 AC 869 ms
90,528 KB
testcase_08 AC 679 ms
88,408 KB
testcase_09 AC 660 ms
88,404 KB
testcase_10 AC 660 ms
88,484 KB
testcase_11 AC 668 ms
88,284 KB
testcase_12 AC 667 ms
90,496 KB
testcase_13 AC 662 ms
88,536 KB
testcase_14 AC 679 ms
88,404 KB
testcase_15 AC 679 ms
88,832 KB
testcase_16 AC 672 ms
88,672 KB
testcase_17 AC 656 ms
87,424 KB
testcase_18 AC 664 ms
87,680 KB
testcase_19 AC 667 ms
87,544 KB
testcase_20 AC 675 ms
89,964 KB
testcase_21 AC 669 ms
90,368 KB
testcase_22 AC 673 ms
90,220 KB
testcase_23 AC 674 ms
88,656 KB
testcase_24 AC 671 ms
88,220 KB
testcase_25 AC 684 ms
88,612 KB
testcase_26 AC 703 ms
91,432 KB
testcase_27 AC 694 ms
91,380 KB
testcase_28 AC 702 ms
91,648 KB
testcase_29 AC 664 ms
89,088 KB
testcase_30 AC 285 ms
79,660 KB
testcase_31 AC 436 ms
83,224 KB
testcase_32 AC 263 ms
79,360 KB
testcase_33 AC 353 ms
81,792 KB
testcase_34 AC 501 ms
85,992 KB
testcase_35 AC 858 ms
90,860 KB
testcase_36 AC 847 ms
91,256 KB
testcase_37 AC 853 ms
91,096 KB
testcase_38 AC 299 ms
80,168 KB
testcase_39 AC 685 ms
91,160 KB
testcase_40 AC 394 ms
83,312 KB
testcase_41 AC 819 ms
91,008 KB
testcase_42 AC 865 ms
90,844 KB
testcase_43 AC 844 ms
90,680 KB
testcase_44 AC 846 ms
90,668 KB
testcase_45 AC 854 ms
90,788 KB
testcase_46 AC 837 ms
90,672 KB
testcase_47 AC 843 ms
90,760 KB
testcase_48 AC 659 ms
86,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[0]+list(map(int,input().split()))
S=301
C=[[0]*i for i in range(S)]
DP=[0]*(N+2)
mod=10**9+7
DP[1]=1
for i in range(1,N+1):
  for j in range(1,S):
    DP[i]+=C[j][i%j]
    if DP[i]>=mod:
      DP[i]-=mod
  if A[i]<S:
    m=i%A[i]
    C[A[i]][m]+=DP[i]
    if C[A[i]][m]>=mod:
      C[A[i]][m]-=mod
  else:
    for j in range(i+A[i],N+1,A[i]):
      DP[j]+=DP[i]
      if DP[j]>=mod:
        DP[j]-=mod
  if A[i]>1:
    DP[i+1]+=DP[i]
  if DP[i+1]>=mod:
    DP[i+1]-=mod
print(DP[N])
0