結果

問題 No.1331 Moving Penguin
ユーザー shotoyooshotoyoo
提出日時 2021-01-08 22:03:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 742 ms / 1,500 ms
コード長 791 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,440 KB
最終ジャッジ日時 2024-11-07 14:42:43
合計ジャッジ時間 19,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
74,368 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 646 ms
93,440 KB
testcase_05 AC 265 ms
89,520 KB
testcase_06 AC 266 ms
89,564 KB
testcase_07 AC 264 ms
89,856 KB
testcase_08 AC 87 ms
89,752 KB
testcase_09 AC 85 ms
89,148 KB
testcase_10 AC 88 ms
89,276 KB
testcase_11 AC 90 ms
89,152 KB
testcase_12 AC 91 ms
89,644 KB
testcase_13 AC 92 ms
89,600 KB
testcase_14 AC 102 ms
89,600 KB
testcase_15 AC 103 ms
89,428 KB
testcase_16 AC 115 ms
89,856 KB
testcase_17 AC 110 ms
89,732 KB
testcase_18 AC 109 ms
89,588 KB
testcase_19 AC 109 ms
89,672 KB
testcase_20 AC 107 ms
89,508 KB
testcase_21 AC 106 ms
89,680 KB
testcase_22 AC 155 ms
89,860 KB
testcase_23 AC 95 ms
89,856 KB
testcase_24 AC 94 ms
89,240 KB
testcase_25 AC 95 ms
89,580 KB
testcase_26 AC 668 ms
91,272 KB
testcase_27 AC 663 ms
91,280 KB
testcase_28 AC 665 ms
91,716 KB
testcase_29 AC 637 ms
92,080 KB
testcase_30 AC 267 ms
80,188 KB
testcase_31 AC 402 ms
83,776 KB
testcase_32 AC 245 ms
79,908 KB
testcase_33 AC 330 ms
81,908 KB
testcase_34 AC 464 ms
86,260 KB
testcase_35 AC 720 ms
90,876 KB
testcase_36 AC 714 ms
91,392 KB
testcase_37 AC 722 ms
90,860 KB
testcase_38 AC 280 ms
80,512 KB
testcase_39 AC 647 ms
91,108 KB
testcase_40 AC 364 ms
82,588 KB
testcase_41 AC 673 ms
90,732 KB
testcase_42 AC 734 ms
90,488 KB
testcase_43 AC 736 ms
90,732 KB
testcase_44 AC 742 ms
90,752 KB
testcase_45 AC 728 ms
90,856 KB
testcase_46 AC 724 ms
90,724 KB
testcase_47 AC 734 ms
91,136 KB
testcase_48 AC 81 ms
89,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
_print = lambda *x: print(*x, file=sys.stderr)

n = int(input())
a = list(map(int, input().split()))
B = min(300, max(a)+1)
dp = [0]*(n)
dp[0] = 1
M = 10**9+7
vals = [[0]*B for _ in range(B)]
def sub(i):
    res = 0
    for v in range(1,B):
        res += vals[v][i%v]
        res %= M
    return res
#     return sum(vals[v][i%v] for v in range(1,B))%M
for i,v in enumerate(a):
    dp[i] += sub(i)
    if i==n-1:
        break
    if v>=2:
        dp[i+1] += dp[i]
    if v>=B:
        for j in range(i+v,n,v):
            dp[j] += dp[i]
            dp[j] %= M
    else:
        vals[v][i%v] += dp[i]
        vals[v][i%v] %= M
ans = dp[-1]%M
print(ans%M)
0