結果

問題 No.1331 Moving Penguin
ユーザー tamatotamato
提出日時 2021-01-08 22:11:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 707 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 177,152 KB
最終ジャッジ日時 2024-11-16 12:36:11
合計ジャッジ時間 73,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
135,808 KB
testcase_02 AC 45 ms
63,360 KB
testcase_03 AC 46 ms
141,952 KB
testcase_04 TLE -
testcase_05 AC 721 ms
172,928 KB
testcase_06 AC 717 ms
94,848 KB
testcase_07 AC 718 ms
173,184 KB
testcase_08 AC 715 ms
94,464 KB
testcase_09 AC 717 ms
173,440 KB
testcase_10 AC 716 ms
94,720 KB
testcase_11 AC 717 ms
162,688 KB
testcase_12 AC 714 ms
94,592 KB
testcase_13 AC 719 ms
164,096 KB
testcase_14 AC 719 ms
94,464 KB
testcase_15 AC 716 ms
162,048 KB
testcase_16 AC 717 ms
94,464 KB
testcase_17 AC 715 ms
166,144 KB
testcase_18 AC 715 ms
94,464 KB
testcase_19 AC 713 ms
94,592 KB
testcase_20 AC 713 ms
94,336 KB
testcase_21 AC 716 ms
173,184 KB
testcase_22 AC 715 ms
94,464 KB
testcase_23 AC 713 ms
173,184 KB
testcase_24 AC 714 ms
94,464 KB
testcase_25 AC 713 ms
161,920 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 716 ms
89,856 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 718 ms
177,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

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

    add = [[0] * i for i in range(321)]

    ans = [0] * N
    ans[0] = 1
    for i, a in enumerate(A):
        for d in range(1, 321):
            ans[i] = (ans[i] + add[d][i % d])%mod
        if a <= 320:
            add[a][i%a] = (add[a][i%a] + ans[i])%mod
        else:
            for j in range(1, N+1):
                if i+j >= N:
                    break
                ans[i+j] = (ans[i+j] + 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