結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー simansiman
提出日時 2023-05-19 23:04:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-05-10 06:27:09
合計ジャッジ時間 12,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,416 KB
testcase_01 AC 84 ms
12,416 KB
testcase_02 AC 88 ms
12,416 KB
testcase_03 AC 83 ms
12,160 KB
testcase_04 AC 91 ms
12,416 KB
testcase_05 AC 91 ms
12,544 KB
testcase_06 AC 88 ms
12,544 KB
testcase_07 AC 303 ms
18,816 KB
testcase_08 AC 135 ms
16,000 KB
testcase_09 AC 221 ms
20,224 KB
testcase_10 AC 207 ms
12,800 KB
testcase_11 AC 231 ms
15,872 KB
testcase_12 AC 301 ms
21,888 KB
testcase_13 AC 231 ms
21,248 KB
testcase_14 AC 204 ms
18,816 KB
testcase_15 AC 358 ms
16,128 KB
testcase_16 AC 364 ms
14,464 KB
testcase_17 AC 437 ms
21,760 KB
testcase_18 AC 434 ms
21,632 KB
testcase_19 AC 435 ms
21,760 KB
testcase_20 AC 443 ms
21,760 KB
testcase_21 AC 448 ms
21,888 KB
testcase_22 AC 443 ms
21,760 KB
testcase_23 AC 439 ms
21,632 KB
testcase_24 AC 444 ms
21,760 KB
testcase_25 AC 434 ms
21,760 KB
testcase_26 AC 438 ms
21,760 KB
testcase_27 AC 404 ms
22,272 KB
testcase_28 AC 433 ms
20,224 KB
testcase_29 AC 376 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
Q = gets.to_i
ans = A.map { |a| a ** 2 }.sum

Q.times do
  c, k, d = gets.split.map(&:to_i)

  before_c = A[c - 1]
  before_d = A[d - 1]

  after_c = before_c - k
  after_d = before_d + k

  ans -= before_c ** 2
  ans -= before_d ** 2
  ans += after_c ** 2
  ans += after_d ** 2

  A[c - 1] = after_c
  A[d - 1] = after_d

  puts ans
end
0