結果

問題 No.1618 Convolution?
ユーザー simansiman
提出日時 2022-10-13 01:49:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 596 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-06-26 11:39:24
合計ジャッジ時間 14,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 463 ms
36,224 KB
testcase_03 AC 512 ms
37,760 KB
testcase_04 AC 411 ms
36,864 KB
testcase_05 AC 112 ms
13,056 KB
testcase_06 AC 522 ms
36,352 KB
testcase_07 AC 523 ms
36,480 KB
testcase_08 AC 422 ms
37,120 KB
testcase_09 AC 594 ms
38,912 KB
testcase_10 AC 433 ms
35,200 KB
testcase_11 AC 572 ms
38,272 KB
testcase_12 AC 596 ms
38,784 KB
testcase_13 AC 593 ms
38,912 KB
testcase_14 AC 589 ms
38,912 KB
testcase_15 AC 591 ms
38,784 KB
testcase_16 AC 591 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