結果

問題 No.2215 Slide Subset Sum
ユーザー vwxyzvwxyz
提出日時 2023-09-06 19:45:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,763 ms / 3,000 ms
コード長 1,500 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 443,764 KB
最終ジャッジ日時 2024-06-24 14:11:36
合計ジャッジ時間 44,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 490 ms
153,948 KB
testcase_01 AC 1,197 ms
443,508 KB
testcase_02 AC 1,762 ms
436,480 KB
testcase_03 AC 1,763 ms
437,612 KB
testcase_04 AC 1,751 ms
436,712 KB
testcase_05 AC 136 ms
89,676 KB
testcase_06 AC 144 ms
89,652 KB
testcase_07 AC 138 ms
89,752 KB
testcase_08 AC 141 ms
89,512 KB
testcase_09 AC 139 ms
89,872 KB
testcase_10 AC 139 ms
89,688 KB
testcase_11 AC 138 ms
89,876 KB
testcase_12 AC 146 ms
90,300 KB
testcase_13 AC 151 ms
90,420 KB
testcase_14 AC 151 ms
90,604 KB
testcase_15 AC 140 ms
89,400 KB
testcase_16 AC 159 ms
90,684 KB
testcase_17 AC 1,576 ms
436,464 KB
testcase_18 AC 1,609 ms
436,724 KB
testcase_19 AC 1,751 ms
437,628 KB
testcase_20 AC 1,565 ms
436,832 KB
testcase_21 AC 1,755 ms
437,616 KB
testcase_22 AC 1,609 ms
436,656 KB
testcase_23 AC 1,378 ms
435,940 KB
testcase_24 AC 1,362 ms
436,332 KB
testcase_25 AC 1,425 ms
436,084 KB
testcase_26 AC 1,529 ms
436,460 KB
testcase_27 AC 226 ms
102,864 KB
testcase_28 AC 220 ms
105,584 KB
testcase_29 AC 265 ms
114,748 KB
testcase_30 AC 809 ms
243,120 KB
testcase_31 AC 516 ms
207,608 KB
testcase_32 AC 296 ms
120,196 KB
testcase_33 AC 1,083 ms
297,300 KB
testcase_34 AC 780 ms
259,700 KB
testcase_35 AC 298 ms
115,276 KB
testcase_36 AC 392 ms
157,544 KB
testcase_37 AC 1,284 ms
435,444 KB
testcase_38 AC 243 ms
128,756 KB
testcase_39 AC 1,203 ms
443,764 KB
testcase_40 AC 300 ms
128,844 KB
testcase_41 AC 140 ms
89,400 KB
testcase_42 AC 1,524 ms
436,712 KB
testcase_43 AC 1,699 ms
436,496 KB
testcase_44 AC 1,727 ms
436,620 KB
testcase_45 AC 1,407 ms
436,464 KB
testcase_46 AC 1,397 ms
436,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')

N,M,K=map(int,readline().split())
A=list(map(int,readline().split()))
mod=998244353
left=[[0]*K for i in range(N+1)]
right=[[0]*K for i in range(N+1)]
left[0][0]=1
right[N][0]=1
for i in range(1,N+1):
    if (i-1)%M==0:
        left[i][0]+=1
        left[i][A[i-1]%K]+=1
    else:
        for k in range(K):
            left[i][k]+=left[i-1][k]
            left[i][k]+=left[i-1][(k-A[i-1])%K]
            left[i][k]%=mod
for i in range(N-1,-1,-1):
    if i%M==0:
        right[i][0]=1
    else:
        for k in range(K):
            right[i][k]+=right[i+1][k]
            right[i][k]+=right[i+1][(k-A[i])%K]
            right[i][k]%=mod
for i in range(N-M+1):
    ans=(sum(right[i][k]*left[i+M][(-k)%K]%mod for k in range(K))-1)%mod
    print(ans)
0