結果

問題 No.1331 Moving Penguin
ユーザー Kiri8128Kiri8128
提出日時 2021-01-08 22:04:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 503 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 181,952 KB
最終ジャッジ日時 2024-11-16 12:01:27
合計ジャッジ時間 77,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
74,624 KB
testcase_01 AC 39 ms
163,184 KB
testcase_02 AC 42 ms
63,232 KB
testcase_03 AC 42 ms
167,176 KB
testcase_04 AC 608 ms
86,656 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 652 ms
90,624 KB
testcase_27 AC 666 ms
181,952 KB
testcase_28 AC 648 ms
90,624 KB
testcase_29 AC 602 ms
81,280 KB
testcase_30 AC 269 ms
78,208 KB
testcase_31 AC 407 ms
80,768 KB
testcase_32 AC 241 ms
73,344 KB
testcase_33 AC 331 ms
79,616 KB
testcase_34 AC 473 ms
81,792 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 276 ms
75,904 KB
testcase_39 AC 638 ms
84,992 KB
testcase_40 AC 367 ms
80,128 KB
testcase_41 TLE -
testcase_42 AC 819 ms
84,508 KB
testcase_43 AC 817 ms
84,608 KB
testcase_44 AC 814 ms
84,480 KB
testcase_45 AC 823 ms
84,676 KB
testcase_46 AC 812 ms
84,608 KB
testcase_47 AC 812 ms
84,224 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 = 300
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