結果

問題 No.2994 べき内積
ユーザー t98slidert98slider
提出日時 2024-12-19 23:07:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 925 bytes
コンパイル時間 6,135 ms
コンパイル使用メモリ 270,228 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-19 23:07:13
合計ジャッジ時間 6,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 3 ms
6,816 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int m, n;
    cin >> m >> n;
    vector<int> K(m + 1);
    for(auto &&v : K) cin >> v;
    n++;
    vector<mint> a(n);
    for(int i = 0; i < n; i++){
        int v;
        cin >> v;
        a[i] = v;
    }
    vector<mint> b(n);
    b[0] = 1;
    int ex = K[0] + (K[0] == 0 ? 1009 : 0);
    while(ex >= 1){
        if(ex & 1){
            b = convolution(b, a);
            b.resize(n);
            for(int i = 0; i < n; i++){
                b[i] = b[i].val() % 1009;
            }
        }
        a = convolution(a, a);
        a.resize(n);
        for(int i = 0; i < n; i++){
            a[i] = a[i].val() % 1009;
        }
        ex >>= 1;
    }
    for(int i = 0; i < n; i++){
        cout << b[i].val() << (i + 1 == n ? '\n' : ' ');
    }
}
0