結果

問題 No.2272 多項式乗算 mod 258280327
ユーザー hotman78hotman78
提出日時 2023-01-17 09:27:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 433 bytes
コンパイル時間 3,064 ms
コンパイル使用メモリ 231,016 KB
実行使用メモリ 23,060 KB
最終ジャッジ日時 2023-09-16 11:50:14
合計ジャッジ時間 6,525 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,384 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 5 ms
4,376 KB
testcase_25 AC 18 ms
4,376 KB
testcase_26 AC 19 ms
4,380 KB
testcase_27 AC 40 ms
5,752 KB
testcase_28 AC 40 ms
5,732 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);
	while((int)c.size()>=2&&c.back()==0)c.pop_back();
	cout<<c.size()-1<<endl;
	for(int i=0;i<c.size();++i){
		cout<<c[i]%258280327<<" \n"[i==n+m];
	}
}
0