結果

問題 No.1353 Limited Sequence
ユーザー titiatitia
提出日時 2021-09-02 00:34:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 850 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-05-06 14:56:57
合計ジャッジ時間 16,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 51 ms
62,080 KB
testcase_02 AC 59 ms
66,304 KB
testcase_03 AC 45 ms
59,392 KB
testcase_04 AC 47 ms
60,032 KB
testcase_05 AC 65 ms
65,152 KB
testcase_06 AC 53 ms
63,232 KB
testcase_07 AC 60 ms
65,280 KB
testcase_08 AC 57 ms
64,000 KB
testcase_09 AC 56 ms
65,152 KB
testcase_10 AC 53 ms
63,616 KB
testcase_11 AC 56 ms
63,744 KB
testcase_12 AC 398 ms
90,112 KB
testcase_13 AC 440 ms
85,420 KB
testcase_14 AC 126 ms
84,736 KB
testcase_15 AC 306 ms
93,056 KB
testcase_16 AC 78 ms
72,448 KB
testcase_17 AC 107 ms
81,792 KB
testcase_18 AC 368 ms
89,728 KB
testcase_19 AC 579 ms
100,352 KB
testcase_20 AC 164 ms
84,040 KB
testcase_21 AC 91 ms
77,312 KB
testcase_22 AC 103 ms
80,128 KB
testcase_23 AC 424 ms
87,640 KB
testcase_24 AC 289 ms
83,712 KB
testcase_25 AC 515 ms
95,872 KB
testcase_26 AC 255 ms
84,992 KB
testcase_27 AC 160 ms
80,128 KB
testcase_28 AC 164 ms
86,256 KB
testcase_29 AC 148 ms
77,824 KB
testcase_30 AC 390 ms
83,072 KB
testcase_31 AC 239 ms
82,496 KB
testcase_32 AC 127 ms
88,320 KB
testcase_33 AC 75 ms
71,680 KB
testcase_34 AC 157 ms
91,744 KB
testcase_35 AC 84 ms
71,424 KB
testcase_36 AC 88 ms
71,680 KB
testcase_37 AC 817 ms
107,904 KB
testcase_38 AC 784 ms
107,940 KB
testcase_39 AC 795 ms
107,904 KB
testcase_40 AC 819 ms
107,776 KB
testcase_41 AC 815 ms
107,904 KB
testcase_42 AC 792 ms
108,032 KB
testcase_43 AC 784 ms
107,904 KB
testcase_44 AC 849 ms
108,056 KB
testcase_45 AC 694 ms
108,160 KB
testcase_46 AC 850 ms
108,160 KB
testcase_47 AC 212 ms
108,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,L,R=map(int,input().split())
A=list(map(int,input().split()))
mod=998244353

DP=[[0]*(N+1) for i in range(R+1)]
S=[0]*(R+1)

#for i in range(R+1):
#    DP[0][i]=1
S[0]=1

for i in range(1,R+1):
    for j in range(N+1):
        for t in range(1,R+1):
            if t>=A[j-1]+1:
                break
            if i-t*j<0:
                break
            
            DP[i][j]+=S[i-t*j]-DP[i-t*j][j]
            DP[i][j]%=mod

        S[i]+=DP[i][j]
        S[i]%=mod

ANS=0
for i in range(L,R+1):
    ANS+=sum(DP[i])%mod
    ANS%=mod

print(ANS)
0