結果

問題 No.1331 Moving Penguin
ユーザー Kiri8128Kiri8128
提出日時 2021-01-08 22:05:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 503 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 193,576 KB
最終ジャッジ日時 2024-11-16 12:15:03
合計ジャッジ時間 75,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
74,624 KB
testcase_01 AC 39 ms
164,324 KB
testcase_02 AC 43 ms
63,360 KB
testcase_03 AC 42 ms
171,552 KB
testcase_04 AC 485 ms
86,528 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 544 ms
90,368 KB
testcase_27 AC 558 ms
85,248 KB
testcase_28 AC 539 ms
85,120 KB
testcase_29 AC 504 ms
81,024 KB
testcase_30 AC 232 ms
76,160 KB
testcase_31 AC 350 ms
80,460 KB
testcase_32 AC 207 ms
73,472 KB
testcase_33 AC 288 ms
79,360 KB
testcase_34 AC 400 ms
82,024 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 244 ms
78,336 KB
testcase_39 AC 527 ms
85,120 KB
testcase_40 AC 301 ms
80,384 KB
testcase_41 TLE -
testcase_42 AC 686 ms
84,352 KB
testcase_43 AC 688 ms
84,648 KB
testcase_44 AC 691 ms
84,352 KB
testcase_45 AC 696 ms
84,548 KB
testcase_46 AC 685 ms
84,608 KB
testcase_47 AC 700 ms
84,240 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 = 250
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