結果
問題 | No.754 畳み込みの和 |
ユーザー | varrho |
提出日時 | 2019-10-08 20:46:23 |
言語 | Nim (2.0.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 341 bytes |
コンパイル時間 | 4,447 ms |
コンパイル使用メモリ | 65,280 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 16:35:27 |
合計ジャッジ時間 | 4,415 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
ソースコード
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] ans += a[i] * tmp ans = ans mod mods echo ans