結果

問題 No.2215 Slide Subset Sum
ユーザー ShirotsumeShirotsume
提出日時 2023-01-07 07:36:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,232 ms / 3,000 ms
コード長 1,478 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 420,356 KB
最終ジャッジ日時 2024-07-04 06:47:00
合計ジャッジ時間 30,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
105,012 KB
testcase_01 AC 878 ms
105,216 KB
testcase_02 AC 902 ms
105,088 KB
testcase_03 AC 905 ms
105,344 KB
testcase_04 AC 1,044 ms
221,572 KB
testcase_05 AC 46 ms
55,552 KB
testcase_06 AC 49 ms
56,320 KB
testcase_07 AC 46 ms
55,552 KB
testcase_08 AC 46 ms
55,424 KB
testcase_09 AC 46 ms
56,064 KB
testcase_10 AC 46 ms
55,424 KB
testcase_11 AC 48 ms
55,552 KB
testcase_12 AC 57 ms
64,000 KB
testcase_13 AC 61 ms
66,432 KB
testcase_14 AC 59 ms
65,024 KB
testcase_15 AC 48 ms
55,936 KB
testcase_16 AC 68 ms
69,888 KB
testcase_17 AC 1,127 ms
294,072 KB
testcase_18 AC 1,078 ms
279,496 KB
testcase_19 AC 1,015 ms
179,860 KB
testcase_20 AC 926 ms
281,104 KB
testcase_21 AC 1,135 ms
285,336 KB
testcase_22 AC 1,038 ms
360,760 KB
testcase_23 AC 1,123 ms
419,264 KB
testcase_24 AC 1,112 ms
420,356 KB
testcase_25 AC 1,092 ms
400,700 KB
testcase_26 AC 1,033 ms
363,708 KB
testcase_27 AC 128 ms
79,172 KB
testcase_28 AC 144 ms
92,456 KB
testcase_29 AC 159 ms
88,600 KB
testcase_30 AC 449 ms
91,776 KB
testcase_31 AC 410 ms
201,272 KB
testcase_32 AC 169 ms
85,580 KB
testcase_33 AC 807 ms
276,344 KB
testcase_34 AC 640 ms
256,644 KB
testcase_35 AC 184 ms
89,284 KB
testcase_36 AC 258 ms
130,548 KB
testcase_37 AC 568 ms
263,940 KB
testcase_38 AC 176 ms
108,356 KB
testcase_39 AC 885 ms
105,088 KB
testcase_40 AC 211 ms
104,320 KB
testcase_41 AC 46 ms
55,168 KB
testcase_42 AC 935 ms
282,904 KB
testcase_43 AC 1,230 ms
287,728 KB
testcase_44 AC 1,232 ms
287,536 KB
testcase_45 AC 1,060 ms
378,932 KB
testcase_46 AC 1,069 ms
378,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import random
n, m, k = mi()
a = li()
MAXI = k
valuetop = []
valuebottom = []
dptop = []
dpbottom = []

X = [0] * MAXI
X[0] = 1
dptop.append(X)
dpbottom.append(X)
def push(x):
    valuebottom.append(x)
    ndp = [0] * MAXI
    for v in range(MAXI):
        ndp[(v+x)%MAXI] += dpbottom[-1][v]
        ndp[v] += dpbottom[-1][v]
        ndp[(v+x)%MAXI] %= mod
        ndp[v] %= mod
    dpbottom.append(ndp)
def pop():
    if not valuetop:
        valuebottom.reverse()
        for x in valuebottom:
            ndp = [0] * MAXI
            for v in range(MAXI):
                ndp[(v+x)%MAXI] += dptop[-1][v]
                ndp[v] += dptop[-1][v]
                ndp[(v+x)%MAXI] %= mod
                ndp[v] %= mod
            dptop.append(ndp)
            valuetop.append(x)
        while valuebottom:
            valuebottom.pop()
        while len(dpbottom) > 1:
            dpbottom.pop()
    dptop.pop()
    valuetop.pop()
def fold():
    ans = 0
    for v in range(MAXI):
        ans += dptop[-1][v] * dpbottom[-1][(MAXI-v) % MAXI]
        ans %= mod
    return ans


for i in range(m):
    push(a[i])
ans = []
ans.append(fold())

for i in range(m, n):
    pop()
    push(a[i])
    ans.append(fold())

for v in ans:
    print((v-1) % mod)




        

0