結果

問題 No.1618 Convolution?
ユーザー simansiman
提出日時 2022-10-12 12:52:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-06-26 07:04:38
合計ジャッジ時間 13,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 476 ms
36,224 KB
testcase_03 AC 531 ms
37,632 KB
testcase_04 AC 426 ms
36,992 KB
testcase_05 AC 117 ms
13,184 KB
testcase_06 AC 540 ms
36,224 KB
testcase_07 AC 544 ms
36,352 KB
testcase_08 AC 435 ms
37,248 KB
testcase_09 AC 615 ms
39,040 KB
testcase_10 AC 460 ms
35,328 KB
testcase_11 AC 584 ms
38,400 KB
testcase_12 AC 615 ms
38,912 KB
testcase_13 AC 619 ms
38,784 KB
testcase_14 AC 623 ms
38,784 KB
testcase_15 AC 621 ms
38,656 KB
testcase_16 AC 617 ms
38,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)
C = Array.new(2 * N + 1, 0)

sum_a = 0
rui_a = 0
A.each.with_index(1) do |a, i|
  sum_a += rui_a
  sum_a += a
  C[i] += sum_a

  rui_a += a
end

A.each.with_index(1) do |a, i|
  sum_a -= N * a
  rui_a -= a
  sum_a += rui_a
  C[i + N] += sum_a
end

sum_b = 0
rui_b = 0
B.each.with_index(1) do |b, i|
  sum_b += rui_b
  sum_b += b
  C[i] += sum_b

  rui_b += b
end

B.each.with_index(1) do |b, i|
  sum_b -= N * b
  rui_b -= b
  sum_b += rui_b
  C[i + N] += sum_b
end

puts C[0..-2].join(' ')
0