結果

問題 No.754 畳み込みの和
コンテスト
ユーザー むらため
提出日時 2019-01-17 13:04:15
言語 Nim
(2.2.6)
コンパイル:
nim --nimcache=~ --hints:off -o:a.out -d:release cpp _filename_
実行:
./a.out
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 390 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,378 ms
コンパイル使用メモリ 69,712 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2026-03-22 02:38:01
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 47) Warning: imported and not used: 'macros' [UnusedImport]
/home/judge/data/code/Main.nim(1, 54) Warning: imported and not used: 'strformat' [UnusedImport]
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'algorithm' [UnusedImport]
/home/judge/data/code/Main.nim(1, 41) Warning: imported and not used: 'sugar' [UnusedImport]

ソースコード

diff #
raw source code

import sequtils,strutils,algorithm,math,sugar,macros,strformat
template get*():string = stdin.readLine().strip()
const INF = 10_0000_0007
let n = get().parseInt()
let A = newSeqWith(n+1,get().parseInt())
let B = newSeqWith(n+1,get().parseInt())
var bSum = B.foldl((a+b) mod INF,0)
var ans = 0
for i,a in A:
  ans = (ans + a * bSum) mod INF
  bSum = (bSum - B[^(1+i)] + INF) mod INF
echo ans
0