結果

問題 No.1353 Limited Sequence
ユーザー GER_chenGER_chen
提出日時 2021-01-17 14:37:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,117 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 347,264 KB
最終ジャッジ日時 2024-11-29 16:06:04
合計ジャッジ時間 107,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 91 ms
310,324 KB
testcase_02 AC 102 ms
82,048 KB
testcase_03 AC 63 ms
312,008 KB
testcase_04 AC 69 ms
73,984 KB
testcase_05 AC 86 ms
178,032 KB
testcase_06 AC 80 ms
81,280 KB
testcase_07 AC 105 ms
232,628 KB
testcase_08 AC 98 ms
81,664 KB
testcase_09 AC 108 ms
308,376 KB
testcase_10 AC 93 ms
81,920 KB
testcase_11 AC 91 ms
339,280 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 805 ms
88,340 KB
testcase_17 AC 1,824 ms
315,368 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
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 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 最後の数の連続数
"""
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] = sum([sum(v) for v in DP[allsum-last-1]])
                try:
                    DP[allsum][last][length] -= sum(DP[allsum-last-1][last])
                except IndexError:
                    pass
                DP[allsum][last][length] %= mod

ans = 0
for i in range(L-1, R):
    ans += sum([sum(v) for v in DP[i]])
print(ans%mod)
#print(DP)
0