結果

問題 No.754 畳み込みの和
ユーザー tailstails
提出日時 2018-12-02 00:06:09
言語 cLay
(20240104-1)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 111 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 174,276 KB
実行使用メモリ 6,200 KB
最終ジャッジ日時 2023-09-19 00:10:05
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,932 KB
testcase_01 AC 11 ms
5,988 KB
testcase_02 AC 11 ms
6,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n;
mint a[2d5],b[2d5],s,t;
{
	rd(n,a(n+1),b(n+1));
	s+=a[0..n];
	rep(i,0,n+1)t+=s*b[i],s-=a[n-i];
	wt(t);
}
0