結果

問題 No.1331 Moving Penguin
ユーザー marroncastlemarroncastle
提出日時 2021-01-20 21:07:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 848 ms / 1,500 ms
コード長 422 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-11-07 15:15:37
合計ジャッジ時間 35,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
67,200 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 810 ms
91,904 KB
testcase_05 AC 795 ms
86,784 KB
testcase_06 AC 797 ms
86,784 KB
testcase_07 AC 808 ms
86,912 KB
testcase_08 AC 790 ms
86,272 KB
testcase_09 AC 798 ms
86,272 KB
testcase_10 AC 796 ms
86,272 KB
testcase_11 AC 794 ms
86,144 KB
testcase_12 AC 794 ms
86,144 KB
testcase_13 AC 786 ms
86,272 KB
testcase_14 AC 788 ms
86,528 KB
testcase_15 AC 798 ms
86,272 KB
testcase_16 AC 797 ms
86,400 KB
testcase_17 AC 802 ms
85,376 KB
testcase_18 AC 802 ms
85,632 KB
testcase_19 AC 790 ms
85,376 KB
testcase_20 AC 791 ms
85,504 KB
testcase_21 AC 790 ms
85,504 KB
testcase_22 AC 789 ms
85,376 KB
testcase_23 AC 796 ms
86,272 KB
testcase_24 AC 788 ms
86,016 KB
testcase_25 AC 790 ms
86,144 KB
testcase_26 AC 805 ms
91,392 KB
testcase_27 AC 803 ms
91,264 KB
testcase_28 AC 806 ms
91,264 KB
testcase_29 AC 796 ms
88,832 KB
testcase_30 AC 216 ms
75,904 KB
testcase_31 AC 396 ms
83,584 KB
testcase_32 AC 193 ms
75,264 KB
testcase_33 AC 291 ms
79,488 KB
testcase_34 AC 480 ms
86,016 KB
testcase_35 AC 824 ms
90,624 KB
testcase_36 AC 838 ms
90,752 KB
testcase_37 AC 831 ms
90,752 KB
testcase_38 AC 227 ms
76,416 KB
testcase_39 AC 764 ms
91,264 KB
testcase_40 AC 341 ms
82,560 KB
testcase_41 AC 786 ms
86,528 KB
testcase_42 AC 829 ms
90,624 KB
testcase_43 AC 843 ms
90,880 KB
testcase_44 AC 838 ms
90,752 KB
testcase_45 AC 848 ms
90,624 KB
testcase_46 AC 841 ms
90,624 KB
testcase_47 AC 847 ms
90,624 KB
testcase_48 AC 789 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
n = int(N**.5)+1
cum = [[0]*i for i in range(n+1)]
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]>n:
    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,n+1):
    cum[k][i%k] += dp[i]
    cum[k][i%k] %= MOD
print(dp[0])
  
0