結果

問題 No.2817 Competition
ユーザー makichanmakichan
提出日時 2024-07-19 23:06:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 1,229 bytes
コンパイル時間 5,714 ms
コンパイル使用メモリ 320,504 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-07-19 23:07:05
合計ジャッジ時間 10,872 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 436 ms
14,592 KB
testcase_04 AC 441 ms
14,720 KB
testcase_05 AC 440 ms
14,592 KB
testcase_06 AC 438 ms
14,592 KB
testcase_07 AC 442 ms
14,592 KB
testcase_08 AC 50 ms
5,376 KB
testcase_09 AC 99 ms
6,272 KB
testcase_10 AC 151 ms
7,680 KB
testcase_11 AC 265 ms
10,752 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 111 ms
6,656 KB
testcase_14 AC 169 ms
8,192 KB
testcase_15 AC 89 ms
6,144 KB
testcase_16 AC 185 ms
8,704 KB
testcase_17 AC 124 ms
7,168 KB
testcase_18 AC 446 ms
14,720 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

template<typename T>
void compress(vector<T>&a, bool is_unique=false){
    auto b=a;
    sort(b.begin(),b.end());
    if(is_unique){
        auto p=unique(b.begin(),b.end());
        b.erase(p,b.end());
    }
    for(auto&x:a)x=lower_bound(b.begin(),b.end(),x)-b.begin();
}

int main(){
    int n;
    cin >> n;
    queue<vector<mint>> Q;
    rep(i,0,n){
        ll a;
        cin >> a;
        vector<mint> p(2);
        p[0]=1;
        p[1]=a;
        Q.push(p);
    }
    //rep(i,1,m+1)factorial[i]=factorial[i-1]*i,invfactorial[i]=factorial[i].inv();

    while(Q.size()>1){
        auto a=Q.front();
        Q.pop();
        auto b=Q.front();
        Q.pop();
        Q.push(convolution(a,b));
    }
    auto p=Q.front();
    //for(auto x:p)cout << x.val() << "\n";
    mint ans=0;
    rep(i,1,n+1){
        ans+=p[i]*mint(i).pow(n-i);
    }
    cout << ans.val();
}
0