結果

問題 No.1331 Moving Penguin
ユーザー Kiri8128Kiri8128
提出日時 2021-01-08 22:03:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 501 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 1,008,384 KB
最終ジャッジ日時 2024-11-16 11:58:24
合計ジャッジ時間 48,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
72,704 KB
testcase_01 AC 37 ms
336,352 KB
testcase_02 AC 37 ms
57,216 KB
testcase_03 AC 40 ms
339,456 KB
testcase_04 AC 77 ms
85,888 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 98 ms
84,864 KB
testcase_27 AC 102 ms
85,120 KB
testcase_28 WA -
testcase_29 AC 73 ms
81,536 KB
testcase_30 AC 74 ms
74,112 KB
testcase_31 AC 88 ms
80,416 KB
testcase_32 AC 73 ms
73,728 KB
testcase_33 AC 80 ms
77,320 KB
testcase_34 AC 91 ms
81,792 KB
testcase_35 AC 251 ms
84,296 KB
testcase_36 AC 251 ms
84,328 KB
testcase_37 AC 254 ms
84,608 KB
testcase_38 AC 74 ms
74,624 KB
testcase_39 AC 103 ms
84,772 KB
testcase_40 AC 88 ms
79,912 KB
testcase_41 WA -
testcase_42 AC 259 ms
84,464 KB
testcase_43 AC 247 ms
84,224 KB
testcase_44 AC 251 ms
84,352 KB
testcase_45 AC 248 ms
84,352 KB
testcase_46 AC 244 ms
84,400 KB
testcase_47 AC 247 ms
84,296 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 = 4
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