結果

問題 No.754 畳み込みの和
ユーザー tailstails
提出日時 2018-12-02 00:06:09
言語 cLay
(20240714-1)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 111 bytes
コンパイル時間 2,853 ms
コンパイル使用メモリ 176,448 KB
実行使用メモリ 6,976 KB
最終ジャッジ日時 2024-07-05 13:10:51
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 10 ms
6,940 KB
testcase_02 AC 10 ms
6,976 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