結果

問題 No.2215 Slide Subset Sum
ユーザー tktk_snsntktk_snsn
提出日時 2023-02-11 02:36:55
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 989 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 664,380 KB
最終ジャッジ日時 2024-07-07 19:28:46
合計ジャッジ時間 38,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
98,748 KB
testcase_01 AC 700 ms
99,452 KB
testcase_02 AC 716 ms
110,752 KB
testcase_03 AC 717 ms
105,604 KB
testcase_04 AC 1,102 ms
277,300 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 44 ms
59,264 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 54 ms
63,360 KB
testcase_13 AC 57 ms
65,920 KB
testcase_14 AC 51 ms
63,104 KB
testcase_15 AC 45 ms
59,264 KB
testcase_16 AC 70 ms
69,760 KB
testcase_17 AC 1,749 ms
491,188 KB
testcase_18 AC 1,459 ms
372,568 KB
testcase_19 AC 1,100 ms
281,572 KB
testcase_20 AC 1,333 ms
447,992 KB
testcase_21 AC 1,254 ms
279,320 KB
testcase_22 AC 1,364 ms
470,420 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 1,474 ms
472,544 KB
testcase_27 AC 115 ms
80,036 KB
testcase_28 AC 181 ms
106,084 KB
testcase_29 AC 166 ms
106,416 KB
testcase_30 AC 374 ms
93,804 KB
testcase_31 AC 730 ms
277,176 KB
testcase_32 AC 171 ms
105,044 KB
testcase_33 AC 793 ms
270,432 KB
testcase_34 AC 915 ms
284,572 KB
testcase_35 AC 180 ms
107,028 KB
testcase_36 AC 362 ms
183,748 KB
testcase_37 AC 1,398 ms
447,116 KB
testcase_38 AC 256 ms
137,544 KB
testcase_39 AC 720 ms
99,484 KB
testcase_40 AC 276 ms
98,684 KB
testcase_41 AC 39 ms
52,512 KB
testcase_42 AC 1,224 ms
446,860 KB
testcase_43 AC 1,010 ms
279,384 KB
testcase_44 AC 1,106 ms
279,504 KB
testcase_45 MLE -
testcase_46 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def merge(X, Y, K):
    res = X[0] * Y[0] - 1
    for i in range(1, K):
        res += X[i] * Y[K - i]
        res %= mod
    return res


def calc_dp(K, A):
    dp = [0] * K
    dp[0] = 1
    for a in A:
        tmp = [0] * K
        for i in range(K):
            tmp[i] = dp[i - a]
        for i in range(K):
            dp[i] += tmp[i]
            dp[i] %= mod
        yield dp[:]


def main():
    N, M, K = map(int, input().split())
    block = (N + M - 1) // M
    A = [0] * (block * M + M)
    for i, a in enumerate(map(int, input().split())):
        A[i] = a

    answer = []
    for i in range(block):
        L = [A[j] for j in range(M*i, M*i+M)][::-1]
        R = [A[j] for j in range(M*i+M, M*i+2*M)]

        dpL = list(calc_dp(K, L))[::-1]
        dpR = list(calc_dp(K, R))

        answer.append((dpL[0][0] - 1) % mod)
        for j in range(M - 1):
            answer.append(merge(dpL[j+1], dpR[j], K))

    print(*answer[:N - M + 1], sep="\n")


main()
0