結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
71,168 KB
testcase_01 AC 40 ms
58,880 KB
testcase_02 AC 41 ms
58,880 KB
testcase_03 AC 47 ms
59,648 KB
testcase_04 AC 796 ms
82,688 KB
testcase_05 AC 950 ms
84,768 KB
testcase_06 AC 951 ms
84,864 KB
testcase_07 AC 958 ms
84,652 KB
testcase_08 AC 834 ms
84,608 KB
testcase_09 AC 834 ms
84,576 KB
testcase_10 AC 834 ms
82,304 KB
testcase_11 AC 830 ms
84,608 KB
testcase_12 AC 836 ms
84,864 KB
testcase_13 AC 831 ms
84,608 KB
testcase_14 AC 840 ms
84,736 KB
testcase_15 AC 842 ms
84,804 KB
testcase_16 AC 843 ms
84,668 KB
testcase_17 AC 823 ms
84,800 KB
testcase_18 AC 832 ms
84,576 KB
testcase_19 AC 825 ms
84,608 KB
testcase_20 AC 828 ms
84,608 KB
testcase_21 AC 838 ms
84,608 KB
testcase_22 AC 830 ms
84,864 KB
testcase_23 AC 832 ms
84,608 KB
testcase_24 AC 830 ms
84,536 KB
testcase_25 AC 833 ms
84,532 KB
testcase_26 AC 844 ms
85,888 KB
testcase_27 AC 841 ms
85,888 KB
testcase_28 AC 841 ms
85,888 KB
testcase_29 AC 786 ms
81,536 KB
testcase_30 AC 334 ms
78,976 KB
testcase_31 AC 518 ms
81,152 KB
testcase_32 AC 301 ms
75,648 KB
testcase_33 AC 425 ms
80,000 KB
testcase_34 AC 590 ms
82,944 KB
testcase_35 AC 972 ms
85,632 KB
testcase_36 AC 972 ms
85,376 KB
testcase_37 AC 968 ms
85,248 KB
testcase_38 AC 345 ms
78,976 KB
testcase_39 AC 830 ms
85,888 KB
testcase_40 AC 476 ms
81,024 KB
testcase_41 AC 976 ms
82,432 KB
testcase_42 AC 855 ms
83,200 KB
testcase_43 AC 861 ms
83,200 KB
testcase_44 AC 863 ms
83,200 KB
testcase_45 AC 837 ms
82,944 KB
testcase_46 AC 834 ms
82,816 KB
testcase_47 AC 828 ms
82,944 KB
testcase_48 AC 811 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

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:
        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