結果

問題 No.1331 Moving Penguin
ユーザー tamatotamato
提出日時 2021-01-08 22:16:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 1,500 ms
コード長 759 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 90,296 KB
最終ジャッジ日時 2024-11-07 14:47:20
合計ジャッジ時間 31,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
67,968 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 44 ms
58,240 KB
testcase_03 AC 44 ms
58,496 KB
testcase_04 AC 690 ms
90,288 KB
testcase_05 AC 700 ms
89,472 KB
testcase_06 AC 694 ms
89,344 KB
testcase_07 AC 698 ms
89,308 KB
testcase_08 AC 691 ms
89,232 KB
testcase_09 AC 696 ms
89,472 KB
testcase_10 AC 694 ms
89,472 KB
testcase_11 AC 689 ms
89,160 KB
testcase_12 AC 685 ms
89,476 KB
testcase_13 AC 691 ms
89,472 KB
testcase_14 AC 708 ms
89,188 KB
testcase_15 AC 693 ms
89,728 KB
testcase_16 AC 699 ms
89,048 KB
testcase_17 AC 691 ms
89,600 KB
testcase_18 AC 709 ms
89,344 KB
testcase_19 AC 693 ms
89,460 KB
testcase_20 AC 683 ms
89,184 KB
testcase_21 AC 688 ms
89,296 KB
testcase_22 AC 693 ms
89,220 KB
testcase_23 AC 691 ms
89,472 KB
testcase_24 AC 688 ms
89,472 KB
testcase_25 AC 683 ms
89,216 KB
testcase_26 AC 695 ms
90,112 KB
testcase_27 AC 713 ms
89,936 KB
testcase_28 AC 707 ms
90,296 KB
testcase_29 AC 687 ms
90,272 KB
testcase_30 AC 277 ms
77,184 KB
testcase_31 AC 424 ms
82,604 KB
testcase_32 AC 251 ms
75,776 KB
testcase_33 AC 346 ms
81,340 KB
testcase_34 AC 495 ms
85,376 KB
testcase_35 AC 745 ms
89,772 KB
testcase_36 AC 744 ms
89,604 KB
testcase_37 AC 742 ms
89,984 KB
testcase_38 AC 292 ms
79,744 KB
testcase_39 AC 684 ms
90,240 KB
testcase_40 AC 389 ms
82,232 KB
testcase_41 AC 688 ms
89,684 KB
testcase_42 AC 741 ms
90,112 KB
testcase_43 AC 748 ms
89,552 KB
testcase_44 AC 729 ms
89,876 KB
testcase_45 AC 712 ms
90,112 KB
testcase_46 AC 709 ms
89,544 KB
testcase_47 AC 726 ms
89,612 KB
testcase_48 AC 689 ms
89,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))

    block_size = 320
    add = [[0] * i for i in range(block_size+1)]

    ans = [0] * N
    ans[0] = 1
    for i, a in enumerate(A):
        for d in range(1, block_size+1):
            ans[i] = (ans[i] + add[d][i % d])%mod
        if a <= block_size:
            add[a][i%a] = (add[a][i%a] + ans[i])%mod
        else:
            for j in range(1, N+1):
                if i+j*a >= N:
                    break
                ans[i+j*a] = (ans[i+j*a] + ans[i])%mod
        if a != 1 and i+1 != N:
            ans[i+1] = (ans[i+1] + ans[i])%mod
    print(ans[-1])


if __name__ == '__main__':
    main()
0