結果
問題 | No.754 畳み込みの和 |
ユーザー | varrho |
提出日時 | 2019-10-08 20:48:04 |
言語 | Nim (2.0.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 364 bytes |
コンパイル時間 | 3,849 ms |
コンパイル使用メモリ | 65,152 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-11-07 16:38:40 |
合計ジャッジ時間 | 16,548 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
ソースコード
import math, sequtils, strutils let n: int = stdin.readline.parseInt a: seq[int] = mapIt(0..n, stdin.readline.parseInt) b: seq[int] = mapIt(0..n, stdin.readline.parseInt) mods: int = 10 ^ 9 + 7 var ans: int = 0 for i in 0..n: var tmp: int = 0 for j in 0..(n - i): tmp += b[j] tmp = tmp mod mods ans += a[i] * tmp ans = ans mod mods echo ans