結果

問題 No.2215 Slide Subset Sum
ユーザー vwxyzvwxyz
提出日時 2023-09-06 19:40:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,496 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 437,740 KB
最終ジャッジ日時 2024-06-24 14:06:28
合計ジャッジ時間 45,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
153,964 KB
testcase_01 WA -
testcase_02 AC 1,744 ms
436,344 KB
testcase_03 AC 1,778 ms
437,364 KB
testcase_04 AC 1,781 ms
436,604 KB
testcase_05 AC 146 ms
89,576 KB
testcase_06 AC 139 ms
89,628 KB
testcase_07 WA -
testcase_08 AC 140 ms
89,560 KB
testcase_09 AC 148 ms
89,516 KB
testcase_10 AC 140 ms
89,516 KB
testcase_11 AC 142 ms
89,444 KB
testcase_12 AC 150 ms
90,268 KB
testcase_13 AC 155 ms
90,424 KB
testcase_14 AC 152 ms
90,116 KB
testcase_15 AC 144 ms
89,620 KB
testcase_16 AC 161 ms
90,424 KB
testcase_17 AC 1,622 ms
436,564 KB
testcase_18 AC 1,641 ms
436,472 KB
testcase_19 AC 1,838 ms
437,584 KB
testcase_20 AC 1,605 ms
436,464 KB
testcase_21 AC 1,758 ms
437,236 KB
testcase_22 AC 1,579 ms
436,204 KB
testcase_23 AC 1,427 ms
435,948 KB
testcase_24 AC 1,393 ms
436,204 KB
testcase_25 AC 1,456 ms
435,824 KB
testcase_26 AC 1,593 ms
436,540 KB
testcase_27 AC 232 ms
102,912 KB
testcase_28 AC 224 ms
105,684 KB
testcase_29 AC 271 ms
114,484 KB
testcase_30 AC 831 ms
243,112 KB
testcase_31 AC 524 ms
207,492 KB
testcase_32 AC 305 ms
120,148 KB
testcase_33 AC 1,100 ms
297,048 KB
testcase_34 AC 785 ms
259,704 KB
testcase_35 AC 287 ms
115,132 KB
testcase_36 AC 392 ms
157,260 KB
testcase_37 AC 1,295 ms
435,440 KB
testcase_38 AC 252 ms
128,756 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 143 ms
89,600 KB
testcase_42 AC 1,577 ms
436,456 KB
testcase_43 AC 1,771 ms
436,496 KB
testcase_44 AC 1,739 ms
436,752 KB
testcase_45 AC 1,473 ms
436,024 KB
testcase_46 AC 1,490 ms
436,088 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%M==1:
        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