結果

問題 No.1331 Moving Penguin
ユーザー H3PO4H3PO4
提出日時 2022-03-19 09:12:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 761 ms / 1,500 ms
コード長 606 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-11-07 15:24:28
合計ジャッジ時間 30,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
64,256 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 666 ms
81,408 KB
testcase_05 AC 655 ms
78,848 KB
testcase_06 AC 649 ms
78,848 KB
testcase_07 AC 647 ms
78,720 KB
testcase_08 AC 674 ms
78,592 KB
testcase_09 AC 665 ms
79,104 KB
testcase_10 AC 654 ms
78,080 KB
testcase_11 AC 646 ms
78,080 KB
testcase_12 AC 645 ms
78,208 KB
testcase_13 AC 638 ms
78,336 KB
testcase_14 AC 648 ms
78,336 KB
testcase_15 AC 650 ms
78,208 KB
testcase_16 AC 648 ms
78,336 KB
testcase_17 AC 663 ms
78,976 KB
testcase_18 AC 664 ms
79,488 KB
testcase_19 AC 657 ms
79,360 KB
testcase_20 AC 661 ms
78,720 KB
testcase_21 AC 650 ms
79,360 KB
testcase_22 AC 653 ms
78,976 KB
testcase_23 AC 651 ms
78,080 KB
testcase_24 AC 666 ms
78,464 KB
testcase_25 AC 660 ms
78,208 KB
testcase_26 AC 692 ms
87,680 KB
testcase_27 AC 683 ms
87,680 KB
testcase_28 AC 684 ms
88,064 KB
testcase_29 AC 653 ms
80,000 KB
testcase_30 AC 181 ms
70,272 KB
testcase_31 AC 344 ms
77,312 KB
testcase_32 AC 164 ms
69,376 KB
testcase_33 AC 322 ms
72,832 KB
testcase_34 AC 411 ms
79,232 KB
testcase_35 AC 704 ms
87,296 KB
testcase_36 AC 705 ms
86,912 KB
testcase_37 AC 710 ms
87,552 KB
testcase_38 AC 192 ms
71,680 KB
testcase_39 AC 651 ms
88,064 KB
testcase_40 AC 283 ms
75,136 KB
testcase_41 AC 671 ms
79,744 KB
testcase_42 AC 718 ms
87,552 KB
testcase_43 AC 710 ms
86,912 KB
testcase_44 AC 717 ms
87,296 KB
testcase_45 AC 741 ms
87,296 KB
testcase_46 AC 757 ms
87,296 KB
testcase_47 AC 761 ms
86,912 KB
testcase_48 AC 646 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isqrt(n):
    x = n
    y = (x + 1) // 2
    while y < x:
        x = y
        y = (x + n // x) // 2
    return x


N = int(input())
A = map(int, input().split())
sq = isqrt(N)
MOD = 10 ** 9 + 7

dp = [0] * N
dp[0] = 1

small_a = [[0] * i for i in range(sq)]

for i, a in enumerate(A):
    for b in range(1, sq):
        dp[i] += small_a[b][i % b]
    dp[i] %= MOD

    if i + 1 < N and a != 1:
        dp[i + 1] += dp[i]

    if sq <= a:
        for j in range(i + a, N, a):
            dp[j] += dp[i]
    else:
        small_a[a][i % a] += dp[i]
        small_a[a][i % a] %= MOD
print(dp[-1] % MOD)
0