結果

問題 No.1331 Moving Penguin
ユーザー Kiri8128Kiri8128
提出日時 2021-01-08 21:58:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 1,693,784 KB
最終ジャッジ日時 2024-11-16 11:29:49
合計ジャッジ時間 54,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
57,088 KB
testcase_03 AC 40 ms
339,436 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 95 ms
84,960 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 68 ms
81,024 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 68 ms
72,576 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 259 ms
84,036 KB
testcase_36 AC 249 ms
84,080 KB
testcase_37 AC 247 ms
84,608 KB
testcase_38 WA -
testcase_39 AC 97 ms
84,864 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 242 ms
84,352 KB
testcase_43 AC 236 ms
84,096 KB
testcase_44 AC 242 ms
84,232 KB
testcase_45 AC 235 ms
84,224 KB
testcase_46 AC 236 ms
84,424 KB
testcase_47 AC 236 ms
84,096 KB
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10 ** 9 + 7
N = int(input())
A = [int(a) for a in input().split()]
X = [0] * N
X[0] = 1
K = 3
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][a%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("Y =", Y)
print(X[-1])
# print("X =", X)
0