結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー 👑 rin204rin204
提出日時 2024-05-04 16:04:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-05-04 16:04:20
合計ジャッジ時間 10,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 53 ms
61,696 KB
testcase_03 AC 38 ms
53,120 KB
testcase_04 AC 60 ms
65,280 KB
testcase_05 AC 64 ms
66,048 KB
testcase_06 AC 63 ms
66,688 KB
testcase_07 AC 264 ms
86,144 KB
testcase_08 AC 110 ms
80,896 KB
testcase_09 AC 188 ms
86,016 KB
testcase_10 AC 179 ms
77,056 KB
testcase_11 AC 183 ms
82,588 KB
testcase_12 AC 216 ms
88,960 KB
testcase_13 AC 164 ms
87,296 KB
testcase_14 AC 151 ms
83,328 KB
testcase_15 AC 317 ms
82,564 KB
testcase_16 AC 283 ms
78,208 KB
testcase_17 AC 319 ms
89,088 KB
testcase_18 AC 325 ms
88,832 KB
testcase_19 AC 310 ms
89,472 KB
testcase_20 AC 329 ms
88,832 KB
testcase_21 AC 310 ms
89,472 KB
testcase_22 AC 307 ms
88,960 KB
testcase_23 AC 333 ms
88,960 KB
testcase_24 AC 310 ms
89,344 KB
testcase_25 AC 366 ms
89,088 KB
testcase_26 AC 311 ms
89,472 KB
testcase_27 AC 312 ms
88,320 KB
testcase_28 AC 337 ms
88,192 KB
testcase_29 AC 286 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))

ans = sum(a**2 for a in A)
Q = int(input())
for _ in range(Q):
    c, k, d = map(int, input().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
    print(ans)
0