結果
問題 | No.754 畳み込みの和 |
ユーザー | pyttkn |
提出日時 | 2018-12-06 00:33:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 742 bytes |
コンパイル時間 | 987 ms |
コンパイル使用メモリ | 85,624 KB |
実行使用メモリ | 18,368 KB |
最終ジャッジ日時 | 2024-07-23 11:43:38 |
合計ジャッジ時間 | 14,008 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
ソースコード
#define _USE_MATH_DEFINES #include<iostream> #include<vector> #include<algorithm> #include<cmath> #include<string> #include<iomanip> #include<cassert> #include<functional> int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); const long long subtract = 1000000007; int n; long long ans = 0; std::cin >> n; std::vector<long long> a(n + 1); std::vector<long long> b(n + 1); for (int i = 0; i < n + 1; i++){ std::cin >> a[i]; } for (int i = 0; i < n + 1; i++){ std::cin >> b[i]; } //入力終わり for (int i = 0; i < n + 1; i++){ for (int j = 0; j < n + 1 - i; j++){ ans += static_cast<long long>(a[i] * b[j] % subtract); } } std::cout << static_cast<long long>(ans % subtract) << '\n'; return 0; }