結果

問題 No.1353 Limited Sequence
ユーザー mkawa2mkawa2
提出日時 2021-09-17 12:34:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-06-29 17:24:28
合計ジャッジ時間 11,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 AC 48 ms
62,720 KB
testcase_02 AC 52 ms
63,872 KB
testcase_03 AC 44 ms
60,672 KB
testcase_04 AC 45 ms
61,184 KB
testcase_05 AC 51 ms
63,360 KB
testcase_06 AC 52 ms
63,360 KB
testcase_07 AC 51 ms
65,280 KB
testcase_08 AC 50 ms
63,616 KB
testcase_09 AC 49 ms
64,640 KB
testcase_10 AC 49 ms
63,616 KB
testcase_11 AC 49 ms
62,848 KB
testcase_12 AC 271 ms
101,760 KB
testcase_13 AC 328 ms
106,768 KB
testcase_14 AC 85 ms
86,364 KB
testcase_15 AC 158 ms
93,568 KB
testcase_16 AC 60 ms
72,192 KB
testcase_17 AC 74 ms
83,072 KB
testcase_18 AC 272 ms
101,504 KB
testcase_19 AC 320 ms
102,656 KB
testcase_20 AC 121 ms
90,368 KB
testcase_21 AC 82 ms
85,248 KB
testcase_22 AC 79 ms
83,840 KB
testcase_23 AC 275 ms
102,016 KB
testcase_24 AC 213 ms
98,816 KB
testcase_25 AC 299 ms
101,888 KB
testcase_26 AC 183 ms
95,616 KB
testcase_27 AC 145 ms
94,464 KB
testcase_28 AC 98 ms
87,808 KB
testcase_29 AC 116 ms
91,520 KB
testcase_30 AC 267 ms
104,576 KB
testcase_31 AC 177 ms
96,512 KB
testcase_32 AC 104 ms
91,008 KB
testcase_33 AC 58 ms
73,216 KB
testcase_34 AC 126 ms
91,392 KB
testcase_35 AC 90 ms
91,392 KB
testcase_36 AC 89 ms
91,392 KB
testcase_37 AC 454 ms
107,796 KB
testcase_38 AC 432 ms
107,832 KB
testcase_39 AC 436 ms
107,912 KB
testcase_40 AC 448 ms
107,392 KB
testcase_41 AC 449 ms
107,520 KB
testcase_42 AC 431 ms
108,032 KB
testcase_43 AC 452 ms
107,520 KB
testcase_44 AC 448 ms
107,392 KB
testcase_45 AC 435 ms
107,392 KB
testcase_46 AC 457 ms
107,776 KB
testcase_47 AC 141 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

n, l, r = LI()
aa = [0]+LI()

mx = 2005
dp = [[0]*(r+1) for _ in range(mx)]
cs = [0]*(r+1)
cs[0] = 1

for s in range(1, r+1):
    for i in range(1, min(s,n)+1):
        for j in range(1, aa[i]+1):
            if s-i*j < 0: break
            dp[s][i] += cs[s-i*j]-dp[s-i*j][i]
            dp[s][i] %= md
        cs[s] += dp[s][i]
        cs[s] %= md
# print(cs)

ans = 0
for i in range(l, r+1):
    ans += cs[i]
    ans %= md

print(ans)
0