結果

問題 No.1331 Moving Penguin
ユーザー roarisroaris
提出日時 2021-06-03 18:47:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 608 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-11-17 05:33:25
合計ジャッジ時間 59,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
69,376 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 1,321 ms
91,520 KB
testcase_05 AC 1,450 ms
91,520 KB
testcase_06 AC 1,444 ms
91,520 KB
testcase_07 AC 1,469 ms
91,392 KB
testcase_08 AC 1,332 ms
91,136 KB
testcase_09 AC 1,412 ms
91,704 KB
testcase_10 TLE -
testcase_11 AC 1,315 ms
91,136 KB
testcase_12 AC 1,351 ms
90,880 KB
testcase_13 AC 1,299 ms
91,108 KB
testcase_14 AC 1,295 ms
91,184 KB
testcase_15 AC 1,313 ms
91,136 KB
testcase_16 AC 1,315 ms
91,008 KB
testcase_17 AC 1,304 ms
91,008 KB
testcase_18 AC 1,325 ms
91,136 KB
testcase_19 AC 1,318 ms
91,176 KB
testcase_20 AC 1,297 ms
91,164 KB
testcase_21 AC 1,326 ms
91,136 KB
testcase_22 AC 1,346 ms
90,880 KB
testcase_23 AC 1,322 ms
91,008 KB
testcase_24 AC 1,315 ms
91,008 KB
testcase_25 AC 1,287 ms
91,136 KB
testcase_26 AC 1,331 ms
91,520 KB
testcase_27 AC 1,354 ms
91,356 KB
testcase_28 AC 1,373 ms
91,392 KB
testcase_29 AC 1,338 ms
91,776 KB
testcase_30 AC 322 ms
80,128 KB
testcase_31 AC 616 ms
83,888 KB
testcase_32 AC 269 ms
77,400 KB
testcase_33 AC 537 ms
82,092 KB
testcase_34 AC 745 ms
86,400 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 345 ms
80,648 KB
testcase_39 AC 1,313 ms
91,260 KB
testcase_40 AC 509 ms
83,200 KB
testcase_41 TLE -
testcase_42 AC 1,471 ms
91,136 KB
testcase_43 AC 1,460 ms
91,008 KB
testcase_44 AC 1,450 ms
91,008 KB
testcase_45 AC 1,442 ms
91,264 KB
testcase_46 AC 1,481 ms
91,008 KB
testcase_47 AC 1,421 ms
91,136 KB
testcase_48 AC 1,304 ms
91,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
A = list(map(int, input().split()))
M = int(N**0.5)
dp = [0]*N
dp[0] = 1
acc = defaultdict(lambda: defaultdict(int))
MOD = 10**9+7

for i in range(N):
    if i>0 and A[i-1]>1:
        dp[i] += dp[i-1]
        dp[i] %= MOD
        
    for j in range(1, M):
        dp[i] += acc[j][(i+1)%j]
        dp[i] %= MOD
    
    if A[i]>=M:
        for j in range(i+A[i], N, A[i]):
            dp[j] += dp[i]
            dp[j] %= MOD
    else:
        acc[A[i]][(i+1)%A[i]] += dp[i]
        acc[A[i]][(i+1)%A[i]] %= MOD

print(dp[N-1])
0