結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
78,080 KB
testcase_01 AC 42 ms
54,096 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 1,369 ms
107,872 KB
testcase_05 TLE -
testcase_06 AC 1,474 ms
91,776 KB
testcase_07 AC 1,450 ms
91,520 KB
testcase_08 AC 1,292 ms
91,136 KB
testcase_09 AC 1,315 ms
91,008 KB
testcase_10 AC 1,318 ms
91,104 KB
testcase_11 AC 1,325 ms
91,168 KB
testcase_12 AC 1,320 ms
91,136 KB
testcase_13 AC 1,320 ms
91,296 KB
testcase_14 AC 1,330 ms
91,088 KB
testcase_15 AC 1,294 ms
90,880 KB
testcase_16 AC 1,324 ms
90,880 KB
testcase_17 AC 1,321 ms
91,136 KB
testcase_18 AC 1,300 ms
91,136 KB
testcase_19 AC 1,315 ms
91,136 KB
testcase_20 AC 1,328 ms
91,136 KB
testcase_21 AC 1,321 ms
90,880 KB
testcase_22 AC 1,293 ms
91,008 KB
testcase_23 AC 1,296 ms
91,148 KB
testcase_24 AC 1,327 ms
91,092 KB
testcase_25 AC 1,336 ms
90,880 KB
testcase_26 AC 1,428 ms
95,732 KB
testcase_27 AC 1,492 ms
95,960 KB
testcase_28 AC 1,482 ms
95,972 KB
testcase_29 AC 1,347 ms
94,552 KB
testcase_30 AC 326 ms
81,792 KB
testcase_31 AC 657 ms
92,300 KB
testcase_32 AC 304 ms
80,680 KB
testcase_33 AC 535 ms
83,028 KB
testcase_34 AC 819 ms
94,316 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 371 ms
81,280 KB
testcase_39 AC 1,360 ms
96,612 KB
testcase_40 AC 544 ms
92,056 KB
testcase_41 TLE -
testcase_42 AC 1,476 ms
91,392 KB
testcase_43 AC 1,458 ms
91,392 KB
testcase_44 AC 1,451 ms
91,264 KB
testcase_45 AC 1,476 ms
91,148 KB
testcase_46 AC 1,484 ms
91,648 KB
testcase_47 AC 1,477 ms
91,264 KB
testcase_48 AC 1,321 ms
90,880 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
    
    acc[A[i]][(i+1)%A[i]] += dp[i]
    acc[A[i]][(i+1)%A[i]] %= MOD

print(dp[N-1])
0