結果

問題 No.2272 多項式乗算 mod 258280327
ユーザー hotman78hotman78
提出日時 2023-01-17 09:22:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 232,044 KB
実行使用メモリ 23,044 KB
最終ジャッジ日時 2023-09-16 11:50:30
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,384 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 5 ms
4,380 KB
testcase_25 AC 19 ms
4,376 KB
testcase_26 AC 18 ms
4,380 KB
testcase_27 AC 41 ms
5,540 KB
testcase_28 AC 39 ms
5,516 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/convolution>
using ll=long long;

int main(){
	ll n;
	cin>>n;
	vector<ll>a(n+1);
	for(int i=0;i<n+1;++i)cin>>a[i];
	ll m;
	cin>>m;
	vector<ll>b(m+1);
	for(int i=0;i<m+1;++i)cin>>b[i];
	auto c=atcoder::convolution_ll(a,b);
	cout<<n+m<<endl;
	for(int i=0;i<n+m+1;++i){
		cout<<c[i]%258280327<<" \n"[i==n+m];
	}
}
0