結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー KudeKude
提出日時 2023-05-19 21:31:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-05-10 05:12:35
合計ジャッジ時間 10,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 58 ms
61,440 KB
testcase_03 AC 43 ms
52,736 KB
testcase_04 AC 68 ms
65,280 KB
testcase_05 AC 70 ms
65,920 KB
testcase_06 AC 71 ms
66,176 KB
testcase_07 AC 258 ms
86,016 KB
testcase_08 AC 122 ms
81,024 KB
testcase_09 AC 185 ms
86,016 KB
testcase_10 AC 190 ms
77,440 KB
testcase_11 AC 201 ms
82,560 KB
testcase_12 AC 238 ms
89,600 KB
testcase_13 AC 187 ms
87,680 KB
testcase_14 AC 176 ms
83,840 KB
testcase_15 AC 311 ms
82,436 KB
testcase_16 AC 312 ms
78,336 KB
testcase_17 AC 354 ms
89,472 KB
testcase_18 AC 360 ms
89,216 KB
testcase_19 AC 356 ms
89,600 KB
testcase_20 AC 356 ms
89,472 KB
testcase_21 AC 361 ms
89,472 KB
testcase_22 AC 362 ms
89,728 KB
testcase_23 AC 347 ms
89,216 KB
testcase_24 AC 352 ms
89,856 KB
testcase_25 AC 353 ms
89,472 KB
testcase_26 AC 353 ms
89,600 KB
testcase_27 AC 317 ms
88,576 KB
testcase_28 AC 340 ms
88,704 KB
testcase_29 AC 316 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
h = list(map(int, input().split()))
now = sum(x * x for x in h)
for _ in range(int(input())):
    c, k, d = map(int, input().split())
    c -= 1
    d -= 1
    now -= h[c] * h[c] + h[d] * h[d]
    h[c] -= k
    h[d] += k
    now += h[c] * h[c] + h[d] * h[d]
    print(now)
0