結果

問題 No.1331 Moving Penguin
ユーザー convexineqconvexineq
提出日時 2021-01-08 23:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,112 ms / 1,500 ms
コード長 411 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-11-07 14:59:18
合計ジャッジ時間 47,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
67,072 KB
testcase_01 AC 40 ms
59,392 KB
testcase_02 AC 40 ms
58,624 KB
testcase_03 AC 40 ms
59,008 KB
testcase_04 AC 1,075 ms
94,720 KB
testcase_05 AC 1,069 ms
90,496 KB
testcase_06 AC 1,080 ms
90,240 KB
testcase_07 AC 1,078 ms
90,560 KB
testcase_08 AC 1,097 ms
92,672 KB
testcase_09 AC 1,096 ms
92,544 KB
testcase_10 AC 1,112 ms
89,984 KB
testcase_11 AC 1,075 ms
90,116 KB
testcase_12 AC 1,095 ms
92,800 KB
testcase_13 AC 1,067 ms
90,368 KB
testcase_14 AC 1,067 ms
90,096 KB
testcase_15 AC 1,073 ms
89,728 KB
testcase_16 AC 1,089 ms
89,600 KB
testcase_17 AC 1,057 ms
92,544 KB
testcase_18 AC 1,060 ms
92,672 KB
testcase_19 AC 1,062 ms
92,800 KB
testcase_20 AC 1,088 ms
92,544 KB
testcase_21 AC 1,090 ms
92,544 KB
testcase_22 AC 1,091 ms
92,672 KB
testcase_23 AC 1,065 ms
89,728 KB
testcase_24 AC 1,077 ms
89,984 KB
testcase_25 AC 1,074 ms
89,600 KB
testcase_26 AC 1,091 ms
93,952 KB
testcase_27 AC 1,087 ms
93,696 KB
testcase_28 AC 1,076 ms
94,080 KB
testcase_29 AC 1,080 ms
93,952 KB
testcase_30 AC 405 ms
76,160 KB
testcase_31 AC 642 ms
85,120 KB
testcase_32 AC 358 ms
75,008 KB
testcase_33 AC 509 ms
79,616 KB
testcase_34 AC 753 ms
87,936 KB
testcase_35 AC 1,071 ms
90,368 KB
testcase_36 AC 1,067 ms
90,624 KB
testcase_37 AC 1,072 ms
90,752 KB
testcase_38 AC 416 ms
76,928 KB
testcase_39 AC 1,080 ms
93,736 KB
testcase_40 AC 594 ms
81,408 KB
testcase_41 AC 1,091 ms
93,256 KB
testcase_42 AC 1,093 ms
93,448 KB
testcase_43 AC 1,073 ms
90,528 KB
testcase_44 AC 1,068 ms
90,624 KB
testcase_45 AC 1,074 ms
90,624 KB
testcase_46 AC 1,074 ms
90,624 KB
testcase_47 AC 1,064 ms
90,624 KB
testcase_48 AC 1,063 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
M = 512
MOD = 10**9+7
laz = [[0]*i for i in range(M)]
dp = [0]*(n+1)
dp[0] = 1
for i in range(n):
    for j in range(1,M):
        dp[i] += laz[j][i%j]
    dp[i] %= MOD
    ai = a[i]
    if ai >= M:
        for k in range(i+ai,n+1,ai):
            dp[k] += dp[i]
    else:
        laz[ai][i%ai] += dp[i]
    if ai != 1:
        dp[i+1] += dp[i]
print(dp[n-1]%MOD)
0