結果

問題 No.754 畳み込みの和
コンテスト
ユーザー むらため
提出日時 2019-01-17 13:02:33
言語 Nim
(2.2.6)
コンパイル:
nim --nimcache=~ --hints:off -o:a.out -d:release cpp _filename_
実行:
./a.out
結果
RE  
実行時間 -
コード長 336 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,621 ms
コンパイル使用メモリ 67,804 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-03-22 02:36:58
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 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()

let n = get().parseInt()
let A = newSeqWith(n+1,get().parseInt())
let B = newSeqWith(n+1,get().parseInt())
var bSum = B.sum()
var ans = 0
for i,a in A:
  ans = (ans + a * bSum) mod 10_0000_0007
  bSum -= B[^(1+i)]
echo ans
0