結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-05-19 21:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 90,196 KB
最終ジャッジ日時 2024-12-18 02:14:09
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N,M = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))
ans = sum( [i**2 for i in A] )

Q = int(stdin.readline())
ANS = []

for i in range(Q):

    C,K,D = map(int,stdin.readline().split())
    C -= 1
    D -= 1

    ans -= A[C] ** 2
    ans -= A[D] ** 2

    A[C] -= K
    A[D] += K

    ans += A[C] ** 2
    ans += A[D] ** 2

    ANS.append(ans)

print (*ANS,sep="\n")
0