結果

問題 No.2817 Competition
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-13 12:07:49
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 6,885 ms
コンパイル使用メモリ 338,280 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-07-13 12:08:04
合計ジャッジ時間 13,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 422 ms
14,720 KB
testcase_04 AC 422 ms
14,720 KB
testcase_05 AC 428 ms
14,720 KB
testcase_06 AC 428 ms
14,592 KB
testcase_07 AC 426 ms
14,720 KB
testcase_08 AC 49 ms
6,944 KB
testcase_09 AC 95 ms
6,944 KB
testcase_10 AC 146 ms
7,936 KB
testcase_11 AC 256 ms
10,880 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 108 ms
6,944 KB
testcase_14 AC 167 ms
8,448 KB
testcase_15 AC 86 ms
6,940 KB
testcase_16 AC 181 ms
8,704 KB
testcase_17 AC 120 ms
7,296 KB
testcase_18 AC 444 ms
14,720 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
int main(){
	int N;
	std::cin>>N;
	std::queue<std::vector<atcoder::modint998244353>> poly;
	for(int i=0; i<N; i++){
		long long A;
		std::cin>>A;
		poly.push({1,A});
	}
	while(poly.size()>1){
	    std::vector<atcoder::modint998244353> bef=move(poly.front());
	    poly.pop();
	    poly.push(atcoder::convolution(bef,poly.front()));
	    poly.pop();
	}
	atcoder::modint998244353 ans=0;
	for(int i=0; i<=N; i++){
	    ans+=(atcoder::modint998244353(i).pow(N-i))*poly.front()[i];
	}
	std::cout<<ans.val()<<"\n";
}
0