結果

問題 No.1331 Moving Penguin
ユーザー Kiri8128Kiri8128
提出日時 2021-01-08 22:06:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 503 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 319,240 KB
最終ジャッジ日時 2024-11-16 12:16:38
合計ジャッジ時間 64,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
73,088 KB
testcase_01 AC 40 ms
319,240 KB
testcase_02 AC 39 ms
57,728 KB
testcase_03 AC 39 ms
314,260 KB
testcase_04 AC 241 ms
86,016 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 262 ms
90,368 KB
testcase_27 AC 256 ms
85,348 KB
testcase_28 AC 273 ms
85,060 KB
testcase_29 AC 232 ms
80,896 KB
testcase_30 AC 132 ms
75,520 KB
testcase_31 AC 186 ms
80,384 KB
testcase_32 AC 121 ms
73,344 KB
testcase_33 AC 159 ms
79,488 KB
testcase_34 AC 202 ms
81,852 KB
testcase_35 AC 415 ms
84,388 KB
testcase_36 AC 414 ms
84,352 KB
testcase_37 AC 409 ms
84,288 KB
testcase_38 AC 129 ms
75,776 KB
testcase_39 AC 255 ms
84,824 KB
testcase_40 AC 175 ms
79,756 KB
testcase_41 WA -
testcase_42 AC 407 ms
84,112 KB
testcase_43 AC 410 ms
84,280 KB
testcase_44 AC 409 ms
84,480 KB
testcase_45 AC 407 ms
84,476 KB
testcase_46 AC 428 ms
84,292 KB
testcase_47 AC 431 ms
84,352 KB
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10 ** 9 + 7
N = int(input())
A = [int(a) for a in input().split()]
X = [0] * N
X[0] = 1
K = 100
Y = [[0] * a for a in range(K)]

for i, a in enumerate(A):
    s = X[i] + X[i-1]
    if s >= P: s -= P
    for j in range(1, K):
        s += Y[j][i%j]
        if s >= P: s -= P
    X[i] = s
    if a < K:
        Y[a][i%a] += s
        if a == 1 and i < N - 1:
            X[i+1] -= s
    else:
        for j in range(i + a, N, a):
            X[j] += s
            if X[j] >= P: X[j] -= P
print(X[-1])
0