結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー miya145592miya145592
提出日時 2023-05-19 22:52:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 90,988 KB
最終ジャッジ日時 2024-12-20 01:28:41
合計ジャッジ時間 7,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,624 KB
testcase_01 AC 38 ms
52,280 KB
testcase_02 AC 55 ms
64,048 KB
testcase_03 AC 41 ms
54,104 KB
testcase_04 AC 63 ms
67,784 KB
testcase_05 AC 63 ms
68,536 KB
testcase_06 AC 64 ms
68,772 KB
testcase_07 AC 164 ms
86,964 KB
testcase_08 AC 98 ms
81,188 KB
testcase_09 AC 129 ms
86,572 KB
testcase_10 AC 123 ms
80,796 KB
testcase_11 AC 135 ms
83,092 KB
testcase_12 AC 154 ms
90,224 KB
testcase_13 AC 133 ms
88,104 KB
testcase_14 AC 122 ms
84,256 KB
testcase_15 AC 180 ms
86,532 KB
testcase_16 AC 190 ms
87,228 KB
testcase_17 AC 209 ms
90,908 KB
testcase_18 AC 206 ms
90,696 KB
testcase_19 AC 209 ms
90,844 KB
testcase_20 AC 211 ms
90,828 KB
testcase_21 AC 211 ms
90,696 KB
testcase_22 AC 211 ms
90,944 KB
testcase_23 AC 208 ms
90,764 KB
testcase_24 AC 208 ms
90,888 KB
testcase_25 AC 206 ms
90,788 KB
testcase_26 AC 206 ms
90,988 KB
testcase_27 AC 195 ms
89,668 KB
testcase_28 AC 215 ms
89,444 KB
testcase_29 AC 189 ms
86,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
Q = int(input())
CKD = [list(map(int, input().split())) for _ in range(Q)]
S = 0
for a in A:
    S += a**2
for c, k, d in CKD:
    c-=1
    d-=1
    S -= A[c]**2
    S -= A[d]**2
    A[c]-=k
    A[d]+=k
    S += A[c]**2
    S += A[d]**2
    print(S)
0