結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 54 ms
61,952 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 60 ms
65,664 KB
testcase_05 AC 63 ms
65,988 KB
testcase_06 AC 65 ms
65,920 KB
testcase_07 AC 240 ms
86,084 KB
testcase_08 AC 110 ms
81,052 KB
testcase_09 AC 169 ms
86,172 KB
testcase_10 AC 183 ms
77,440 KB
testcase_11 AC 204 ms
82,636 KB
testcase_12 AC 225 ms
89,344 KB
testcase_13 AC 176 ms
87,680 KB
testcase_14 AC 162 ms
83,840 KB
testcase_15 AC 294 ms
82,644 KB
testcase_16 AC 308 ms
78,324 KB
testcase_17 AC 337 ms
89,728 KB
testcase_18 AC 352 ms
89,472 KB
testcase_19 AC 332 ms
89,480 KB
testcase_20 AC 326 ms
89,344 KB
testcase_21 AC 329 ms
89,564 KB
testcase_22 AC 340 ms
89,856 KB
testcase_23 AC 329 ms
89,344 KB
testcase_24 AC 337 ms
89,472 KB
testcase_25 AC 351 ms
89,600 KB
testcase_26 AC 333 ms
89,332 KB
testcase_27 AC 321 ms
88,192 KB
testcase_28 AC 336 ms
88,320 KB
testcase_29 AC 310 ms
76,544 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