結果

問題 No.2817 Competition
ユーザー highlighterhighlighter
提出日時 2024-07-14 00:00:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 4,015 ms
コンパイル使用メモリ 183,588 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-07-14 00:00:11
合計ジャッジ時間 8,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 278 ms
14,336 KB
testcase_04 AC 276 ms
14,336 KB
testcase_05 AC 293 ms
14,208 KB
testcase_06 AC 285 ms
14,336 KB
testcase_07 AC 277 ms
14,336 KB
testcase_08 AC 30 ms
6,940 KB
testcase_09 AC 58 ms
6,940 KB
testcase_10 AC 91 ms
7,424 KB
testcase_11 AC 160 ms
10,368 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 68 ms
6,944 KB
testcase_14 AC 102 ms
7,808 KB
testcase_15 AC 52 ms
6,944 KB
testcase_16 AC 113 ms
8,320 KB
testcase_17 AC 80 ms
6,944 KB
testcase_18 AC 309 ms
14,208 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<atcoder/all>
int main(){
	int N;
	scanf("%d",&N);
	std::queue<std::vector<atcoder::modint998244353>> poly;
	for(long long A,i=0;i<N;i++){
		scanf("%lld",&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];
	printf("%d\n",ans.val());
}
0