結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
75,648 KB
testcase_01 AC 43 ms
162,496 KB
testcase_02 AC 43 ms
63,872 KB
testcase_03 AC 46 ms
151,480 KB
testcase_04 AC 788 ms
87,168 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 849 ms
90,880 KB
testcase_27 AC 856 ms
85,676 KB
testcase_28 AC 839 ms
85,888 KB
testcase_29 AC 807 ms
81,664 KB
testcase_30 AC 345 ms
78,848 KB
testcase_31 AC 516 ms
80,932 KB
testcase_32 AC 298 ms
74,880 KB
testcase_33 AC 423 ms
80,028 KB
testcase_34 AC 606 ms
82,304 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 361 ms
78,976 KB
testcase_39 AC 828 ms
85,188 KB
testcase_40 AC 467 ms
80,640 KB
testcase_41 AC 873 ms
82,176 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
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 = 400
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