結果

問題 No.1331 Moving Penguin
ユーザー shotoyooshotoyoo
提出日時 2021-01-08 21:46:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 693 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 189,440 KB
最終ジャッジ日時 2024-11-16 11:03:08
合計ジャッジ時間 41,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
90,112 KB
testcase_01 AC 39 ms
151,040 KB
testcase_02 AC 39 ms
57,472 KB
testcase_03 AC 40 ms
150,912 KB
testcase_04 TLE -
testcase_05 AC 325 ms
189,184 KB
testcase_06 AC 324 ms
95,872 KB
testcase_07 AC 327 ms
189,440 KB
testcase_08 AC 128 ms
94,976 KB
testcase_09 AC 122 ms
188,288 KB
testcase_10 AC 116 ms
94,848 KB
testcase_11 AC 118 ms
89,728 KB
testcase_12 AC 118 ms
89,600 KB
testcase_13 AC 115 ms
89,728 KB
testcase_14 AC 138 ms
89,728 KB
testcase_15 AC 135 ms
89,856 KB
testcase_16 AC 134 ms
89,984 KB
testcase_17 AC 132 ms
89,984 KB
testcase_18 AC 147 ms
90,240 KB
testcase_19 AC 146 ms
89,856 KB
testcase_20 AC 139 ms
90,112 KB
testcase_21 AC 130 ms
89,728 KB
testcase_22 AC 127 ms
90,240 KB
testcase_23 AC 125 ms
89,984 KB
testcase_24 AC 125 ms
89,472 KB
testcase_25 AC 136 ms
89,728 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,068 ms
87,808 KB
testcase_31 TLE -
testcase_32 AC 938 ms
87,552 KB
testcase_33 AC 1,406 ms
89,600 KB
testcase_34 TLE -
testcase_35 AC 1,149 ms
91,520 KB
testcase_36 AC 1,173 ms
91,648 KB
testcase_37 AC 1,196 ms
91,520 KB
testcase_38 AC 1,189 ms
87,808 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 921 ms
91,136 KB
testcase_42 AC 949 ms
91,392 KB
testcase_43 AC 936 ms
91,520 KB
testcase_44 AC 930 ms
91,008 KB
testcase_45 AC 915 ms
91,264 KB
testcase_46 AC 936 ms
91,264 KB
testcase_47 AC 928 ms
91,136 KB
testcase_48 AC 101 ms
188,544 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(1000, max(a)+1)
dp = [0]*(n)
dp[0] = 1
M = 10**9+7
vals = [[0]*B for _ in range(B)]
def sub(i):
    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