結果

問題 No.1353 Limited Sequence
ユーザー GER_chenGER_chen
提出日時 2021-01-17 14:42:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,653 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 350,440 KB
最終ジャッジ日時 2024-11-29 16:18:01
合計ジャッジ時間 33,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,368 KB
testcase_01 AC 61 ms
67,168 KB
testcase_02 AC 66 ms
71,544 KB
testcase_03 AC 50 ms
62,560 KB
testcase_04 AC 53 ms
64,548 KB
testcase_05 AC 55 ms
65,128 KB
testcase_06 AC 58 ms
66,464 KB
testcase_07 AC 64 ms
69,164 KB
testcase_08 AC 62 ms
68,372 KB
testcase_09 AC 64 ms
69,144 KB
testcase_10 AC 64 ms
68,708 KB
testcase_11 AC 57 ms
65,832 KB
testcase_12 AC 925 ms
241,004 KB
testcase_13 AC 1,040 ms
251,848 KB
testcase_14 AC 184 ms
100,776 KB
testcase_15 AC 461 ms
158,184 KB
testcase_16 AC 102 ms
82,980 KB
testcase_17 AC 122 ms
86,504 KB
testcase_18 AC 913 ms
238,328 KB
testcase_19 AC 1,139 ms
272,928 KB
testcase_20 AC 315 ms
129,056 KB
testcase_21 AC 159 ms
94,048 KB
testcase_22 AC 146 ms
92,536 KB
testcase_23 AC 889 ms
233,008 KB
testcase_24 AC 665 ms
188,864 KB
testcase_25 AC 988 ms
259,888 KB
testcase_26 AC 563 ms
175,212 KB
testcase_27 AC 406 ms
140,948 KB
testcase_28 AC 224 ms
109,676 KB
testcase_29 AC 331 ms
126,296 KB
testcase_30 AC 843 ms
217,168 KB
testcase_31 AC 547 ms
167,364 KB
testcase_32 AC 505 ms
202,624 KB
testcase_33 AC 148 ms
99,612 KB
testcase_34 AC 993 ms
311,024 KB
testcase_35 AC 328 ms
150,880 KB
testcase_36 AC 446 ms
182,828 KB
testcase_37 AC 1,634 ms
350,184 KB
testcase_38 AC 1,638 ms
350,116 KB
testcase_39 AC 1,638 ms
350,184 KB
testcase_40 AC 1,640 ms
350,316 KB
testcase_41 AC 1,639 ms
350,272 KB
testcase_42 AC 1,653 ms
350,208 KB
testcase_43 AC 1,634 ms
350,308 KB
testcase_44 AC 1,635 ms
350,188 KB
testcase_45 AC 1,642 ms
350,440 KB
testcase_46 AC 1,648 ms
350,376 KB
testcase_47 AC 1,153 ms
350,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#1353
N, L, R = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353
DP = [[[0]*((allsum+1)//(last+1)) for last in range(min(N, allsum+1))] for allsum in range(R)]
"""
allsum+1 総和
last+1 最後の数 <= 総和
length+1 最後の数の連続数
"""
DP1 = [[0 for last in range(min(N, allsum+1))] for allsum in range(R)]
DP2 = [0]*R

for allsum in range(R):
    for last in range(min(N, allsum+1)):
        for length in range((allsum+1)//(last+1)):
            if allsum == last and length == 0:
                DP[allsum][last][length] = 1
                #print(DP)
            elif length > 0:
                if allsum+1 >= 2*last+1:
                    if A[last] >= length+1:
                        DP[allsum][last][length] = DP[allsum-last-1][last][length-1]
            else:
                DP[allsum][last][length] = DP2[allsum-last-1]
                try:
                    DP[allsum][last][length] -= DP1[allsum-last-1][last]
                except IndexError:
                    pass
            DP[allsum][last][length] %= mod
            DP1[allsum][last] += DP[allsum][last][length]
            DP2[allsum] += DP[allsum][last][length]
        DP1[allsum][last] %= mod
    DP2[allsum] %= mod

ans = sum(DP2[L-1:R])
print(ans%mod)
0