結果

問題 No.1331 Moving Penguin
ユーザー Kiri8128Kiri8128
提出日時 2021-01-08 22:09:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 812 ms / 1,500 ms
コード長 600 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,716 KB
実行使用メモリ 85,628 KB
最終ジャッジ日時 2024-11-07 14:45:13
合計ジャッジ時間 30,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
71,040 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 43 ms
58,752 KB
testcase_03 AC 47 ms
58,624 KB
testcase_04 AC 607 ms
82,216 KB
testcase_05 AC 772 ms
84,200 KB
testcase_06 AC 759 ms
84,476 KB
testcase_07 AC 762 ms
84,360 KB
testcase_08 AC 630 ms
82,268 KB
testcase_09 AC 631 ms
82,176 KB
testcase_10 AC 628 ms
81,812 KB
testcase_11 AC 637 ms
82,048 KB
testcase_12 AC 632 ms
81,360 KB
testcase_13 AC 628 ms
82,048 KB
testcase_14 AC 638 ms
81,916 KB
testcase_15 AC 639 ms
82,432 KB
testcase_16 AC 648 ms
82,304 KB
testcase_17 AC 631 ms
83,900 KB
testcase_18 AC 632 ms
84,224 KB
testcase_19 AC 633 ms
84,352 KB
testcase_20 AC 631 ms
84,528 KB
testcase_21 AC 630 ms
84,352 KB
testcase_22 AC 634 ms
84,144 KB
testcase_23 AC 633 ms
82,044 KB
testcase_24 AC 628 ms
82,160 KB
testcase_25 AC 633 ms
81,664 KB
testcase_26 AC 650 ms
85,120 KB
testcase_27 AC 659 ms
85,628 KB
testcase_28 AC 650 ms
85,060 KB
testcase_29 AC 601 ms
81,280 KB
testcase_30 AC 270 ms
78,764 KB
testcase_31 AC 402 ms
80,212 KB
testcase_32 AC 241 ms
75,668 KB
testcase_33 AC 328 ms
79,356 KB
testcase_34 AC 456 ms
82,364 KB
testcase_35 AC 810 ms
84,864 KB
testcase_36 AC 811 ms
84,660 KB
testcase_37 AC 812 ms
85,120 KB
testcase_38 AC 284 ms
78,584 KB
testcase_39 AC 650 ms
85,404 KB
testcase_40 AC 378 ms
80,396 KB
testcase_41 AC 766 ms
84,864 KB
testcase_42 AC 806 ms
84,864 KB
testcase_43 AC 811 ms
84,524 KB
testcase_44 AC 812 ms
84,932 KB
testcase_45 AC 806 ms
84,644 KB
testcase_46 AC 799 ms
85,060 KB
testcase_47 AC 801 ms
84,600 KB
testcase_48 AC 629 ms
79,456 KB
権限があれば一括ダウンロードができます

ソースコード

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:
        ia = i % a
        Y[a][ia] += s
        if Y[a][ia] >= P: Y[a][ia] -= P
        if a == 1 and i < N - 1:
            X[i+1] -= s
            if X[i+1] < 0: X[i+1] += P
    else:
        for j in range(i + a, N, a):
            X[j] += s
            if X[j] >= P: X[j] -= P
print(X[-1])
0