結果

問題 No.1068 #いろいろな色 / Red and Blue and more various colors (Hard)
ユーザー とりゐとりゐ
提出日時 2021-10-18 02:23:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,695 ms / 3,500 ms
コード長 1,374 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 200,380 KB
最終ジャッジ日時 2024-09-17 21:40:43
合計ジャッジ時間 51,834 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,528 KB
testcase_01 AC 38 ms
54,144 KB
testcase_02 AC 34 ms
53,760 KB
testcase_03 AC 170 ms
78,968 KB
testcase_04 AC 132 ms
78,532 KB
testcase_05 AC 137 ms
78,444 KB
testcase_06 AC 119 ms
78,428 KB
testcase_07 AC 115 ms
78,548 KB
testcase_08 AC 124 ms
78,636 KB
testcase_09 AC 127 ms
78,536 KB
testcase_10 AC 113 ms
78,324 KB
testcase_11 AC 118 ms
78,496 KB
testcase_12 AC 129 ms
78,176 KB
testcase_13 AC 2,540 ms
199,876 KB
testcase_14 AC 2,538 ms
199,752 KB
testcase_15 AC 2,530 ms
199,868 KB
testcase_16 AC 2,495 ms
199,880 KB
testcase_17 AC 2,503 ms
200,380 KB
testcase_18 AC 2,608 ms
200,256 KB
testcase_19 AC 2,695 ms
199,756 KB
testcase_20 AC 2,585 ms
199,748 KB
testcase_21 AC 2,585 ms
199,612 KB
testcase_22 AC 2,606 ms
199,880 KB
testcase_23 AC 2,650 ms
199,748 KB
testcase_24 AC 2,638 ms
199,736 KB
testcase_25 AC 2,570 ms
199,968 KB
testcase_26 AC 2,596 ms
199,616 KB
testcase_27 AC 2,546 ms
199,748 KB
testcase_28 AC 2,622 ms
199,852 KB
testcase_29 AC 2,545 ms
192,344 KB
testcase_30 AC 2,612 ms
191,632 KB
testcase_31 AC 35 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, g = 998244353, 3
invg = pow(g, p-2, p)
W = [pow(g, (p - 1) >> i, p) for i in range(24)]
iW = [pow(invg, (p - 1) >> i, p) for i in range(24)]
 
def fft(k, f):
    for l in range(k)[::-1]:
        d = 1 << l
        u = 1
        for i in range(d):
            for j in range(i, 1 << k, 2*d):
                f[j], f[j+d] = (f[j] + f[j+d]) % p, u * (f[j] - f[j+d]) % p
            u = u * W[l+1] % p
 
def ifft(k, f):
    for l in range(k):
        d = 1 << l
        u = 1
        for i in range(d):
            for j in range(i, 1 << k, 2*d):
                f[j+d] *= u
                f[j], f[j+d] = (f[j] + f[j+d]) % p, (f[j] - f[j+d]) % p
            u = u * iW[l+1] % p
 
def convolve(a, b):
    n0, n1 = len(a), len(b)
    k = (max(n0, n1) - 1).bit_length() + 1
    n = 1 << k
    a = a + [0] * (n-n0)
    b = b + [0] * (n-n1)
    fft(k, a), fft(k, b)
    for i in range(n):
        a[i] = a[i] * b[i] % p
    ifft(k, a)
    invn = pow(n, p - 2, p)
    return [a[i] * invn % p for i in range(n0 + n1 - 1)]

from collections import deque
def conv_all(l):
    # 分割統治
    q = deque(l)
    while len(q)>=2:
        a = q.popleft()
        b = q.popleft()
        q.append(convolve(a,b))
    return q[0]

n,q=map(int,input().split())
a=list(map(int,input().split()))
FFT=conv_all([[(i-1)%p,1] for i in a])
for i in list(map(int,input().split())):
  print(FFT[i])
0