結果
問題 | No.754 畳み込みの和 |
ユーザー | kotatsugame |
提出日時 | 2018-12-03 05:16:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 85 ms / 5,000 ms |
コード長 | 278 bytes |
コンパイル時間 | 490 ms |
コンパイル使用メモリ | 64,376 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-01 05:34:16 |
合計ジャッジ時間 | 1,280 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
6,812 KB |
testcase_01 | AC | 84 ms
6,940 KB |
testcase_02 | AC | 85 ms
6,940 KB |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 4 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; long ans,mod=1e9+7,a[1<<17],b[1<<17],n; main() { cin>>n; for(int i=0;i<=n;i++)cin>>a[i]; for(int i=0;i<=n;i++)cin>>b[i]; for(int i=1;i<=n;i++)a[i]=(a[i]+a[i-1])%mod; for(int i=0;i<=n;i++)ans=(ans+b[i]*a[n-i])%mod; cout<<ans<<endl; }