結果

問題 No.2966 Simple Plus Minus Problem
ユーザー titiatitia
提出日時 2024-11-26 03:50:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,357 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 114,196 KB
最終ジャッジ日時 2024-11-26 03:50:33
合計ジャッジ時間 17,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
52,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 86 ms
76,544 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
64,896 KB
testcase_13 AC 87 ms
76,544 KB
testcase_14 AC 57 ms
64,768 KB
testcase_15 WA -
testcase_16 AC 47 ms
59,392 KB
testcase_17 AC 89 ms
76,416 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 65 ms
67,072 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 100 ms
77,056 KB
testcase_25 WA -
testcase_26 AC 86 ms
76,544 KB
testcase_27 AC 97 ms
77,312 KB
testcase_28 AC 74 ms
71,936 KB
testcase_29 AC 97 ms
77,696 KB
testcase_30 AC 64 ms
67,584 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 38 ms
52,224 KB
testcase_34 AC 262 ms
90,880 KB
testcase_35 AC 458 ms
104,832 KB
testcase_36 AC 283 ms
95,616 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 445 ms
104,576 KB
testcase_45 AC 460 ms
113,764 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 450 ms
104,832 KB
testcase_50 WA -
testcase_51 AC 417 ms
98,176 KB
testcase_52 AC 473 ms
113,676 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))

mod=998244353

B=[0]*N
k=(K+1)//2


a=k-1
b=0
now=1
for i in range(0,len(B),2):
    B[i]=now
    a+=1
    b+=1
    now=now*a*pow(b,mod-2,mod)%mod

if K%2==1:
    for i in range(1,len(B),2):
        B[i]=B[i-1]


for i in range(1,len(A),2):
    A[i]=-A[i]
    
# FFT
# mod=998244353 における、NTTによる高速フーリエ変換、畳み込み
# 他の提出を参考にしており、あまり理解できていません……
mod=998244353
 
Weight=[1, 998244352, 911660635, 372528824, 929031873, 452798380, 922799308, 781712469, 476477967, 166035806, 258648936, 584193783, 63912897, 350007156, 666702199, 968855178, 629671588, 24514907, 996173970, 363395222, 565042129, 733596141, 267099868, 15311432, 0]
Weight_inv=[1, 998244352, 86583718, 509520358, 337190230, 87557064, 609441965, 135236158, 304459705, 685443576, 381598368, 335559352, 129292727, 358024708, 814576206, 708402881, 283043518, 3707709, 121392023, 704923114, 950391366, 428961804, 382752275, 469870224, 0]
 
def fft(A,n,h,inverse=0):
 
    if inverse==0:
    
        for i in range(h):
            m=1<<(h-i-1)
            for j in range(1<<i):
                w=1     
                ij=j*m*2
                
                wk=Weight[h-i]
                    
                for k in range(m):
                    A[ij+k],A[ij+k+m]=(A[ij+k]+A[ij+k+m])%mod,(A[ij+k]-A[ij+k+m])*w%mod
                    w=w*wk%mod
    else:
        for i in range(h):
            m=1<<i
            for j in range(1<<(h-i-1)):
                w=1     
                ij=j*m*2
                
                wk=Weight_inv[i+1]
                    
                for k in range(m):
                    A[ij+k],A[ij+k+m]=(A[ij+k]+A[ij+k+m]*w)%mod,(A[ij+k]-A[ij+k+m]*w)%mod
                    w=w*wk%mod
        
 
    if inverse==1:
        INV_n=pow(n,mod-2,mod)
        for i in range(n):
            A[i]=A[i]*INV_n%mod
 
    return A
 
def convolution(A,B):
    
    FFTLEN=len(A)+len(B)-1
    h=FFTLEN.bit_length()
    LEN=2**h
 
    A+=[0]*(LEN-len(A)) # A,Bのサイズを2ベキに揃える
    B+=[0]*(LEN-len(B))
 
    A_FFT=fft(A,LEN,h)
    B_FFT=fft(B,LEN,h)
 
    for i in range(len(A)):
        A[i]=A[i]*B[i]%mod
 
    A=fft(A,LEN,h,1)
 
    return A[:FFTLEN]


#print(A,B)
ANS=convolution(A,B)

print(*ANS[:N])
0