結果

問題 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,886 ms
コンパイル使用メモリ 233,964 KB
実行使用メモリ 23,016 KB
最終ジャッジ日時 2024-07-03 12:35:22
合計ジャッジ時間 5,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,948 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 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
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 18 ms
6,944 KB
testcase_26 AC 18 ms
6,940 KB
testcase_27 AC 39 ms
6,940 KB
testcase_28 AC 37 ms
6,940 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