結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,820 KB
testcase_01 AC 38 ms
52,600 KB
testcase_02 AC 44 ms
55,724 KB
testcase_03 AC 39 ms
53,100 KB
testcase_04 AC 50 ms
61,300 KB
testcase_05 AC 48 ms
63,036 KB
testcase_06 AC 50 ms
61,716 KB
testcase_07 AC 107 ms
86,192 KB
testcase_08 AC 75 ms
81,380 KB
testcase_09 AC 94 ms
86,420 KB
testcase_10 AC 83 ms
79,148 KB
testcase_11 AC 94 ms
82,696 KB
testcase_12 AC 107 ms
89,448 KB
testcase_13 AC 96 ms
87,744 KB
testcase_14 AC 89 ms
83,280 KB
testcase_15 AC 114 ms
83,352 KB
testcase_16 AC 114 ms
84,440 KB
testcase_17 AC 133 ms
89,728 KB
testcase_18 AC 132 ms
89,728 KB
testcase_19 AC 133 ms
90,196 KB
testcase_20 AC 134 ms
89,472 KB
testcase_21 AC 132 ms
89,740 KB
testcase_22 AC 133 ms
89,472 KB
testcase_23 AC 134 ms
89,600 KB
testcase_24 AC 134 ms
89,928 KB
testcase_25 AC 131 ms
89,728 KB
testcase_26 AC 133 ms
89,764 KB
testcase_27 AC 122 ms
89,216 KB
testcase_28 AC 131 ms
89,240 KB
testcase_29 AC 107 ms
82,756 KB
権限があれば一括ダウンロードができます

ソースコード

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