結果

問題 No.2215 Slide Subset Sum
ユーザー ShirotsumeShirotsume
提出日時 2023-01-07 11:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,209 ms / 3,000 ms
コード長 1,495 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 431,556 KB
最終ジャッジ日時 2024-07-04 06:47:34
合計ジャッジ時間 30,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
112,896 KB
testcase_01 AC 860 ms
113,024 KB
testcase_02 AC 897 ms
113,024 KB
testcase_03 AC 905 ms
113,152 KB
testcase_04 AC 1,021 ms
228,932 KB
testcase_05 AC 59 ms
63,616 KB
testcase_06 AC 56 ms
63,744 KB
testcase_07 AC 56 ms
63,104 KB
testcase_08 AC 55 ms
63,232 KB
testcase_09 AC 54 ms
63,744 KB
testcase_10 AC 55 ms
63,360 KB
testcase_11 AC 55 ms
63,616 KB
testcase_12 AC 65 ms
71,808 KB
testcase_13 AC 71 ms
74,112 KB
testcase_14 AC 73 ms
72,832 KB
testcase_15 AC 57 ms
63,616 KB
testcase_16 AC 82 ms
77,696 KB
testcase_17 AC 1,125 ms
303,812 KB
testcase_18 AC 1,075 ms
282,172 KB
testcase_19 AC 1,004 ms
187,440 KB
testcase_20 AC 1,045 ms
357,796 KB
testcase_21 AC 1,115 ms
277,820 KB
testcase_22 AC 1,016 ms
370,488 KB
testcase_23 AC 1,085 ms
430,528 KB
testcase_24 AC 1,120 ms
431,556 KB
testcase_25 AC 1,114 ms
408,388 KB
testcase_26 AC 1,092 ms
372,412 KB
testcase_27 AC 134 ms
86,912 KB
testcase_28 AC 152 ms
100,480 KB
testcase_29 AC 181 ms
96,672 KB
testcase_30 AC 439 ms
99,824 KB
testcase_31 AC 398 ms
209,208 KB
testcase_32 AC 186 ms
93,440 KB
testcase_33 AC 830 ms
281,144 KB
testcase_34 AC 667 ms
264,476 KB
testcase_35 AC 188 ms
97,472 KB
testcase_36 AC 282 ms
137,984 KB
testcase_37 AC 648 ms
271,672 KB
testcase_38 AC 162 ms
116,196 KB
testcase_39 AC 847 ms
113,152 KB
testcase_40 AC 185 ms
111,744 KB
testcase_41 AC 47 ms
63,104 KB
testcase_42 AC 973 ms
356,924 KB
testcase_43 AC 1,209 ms
281,904 KB
testcase_44 AC 1,178 ms
281,484 KB
testcase_45 AC 1,060 ms
375,176 KB
testcase_46 AC 1,170 ms
375,172 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 = []
_ = [0] * 10 ** 6
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