結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー yabityabit
提出日時 2023-06-24 09:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-07-01 12:31:41
合計ジャッジ時間 11,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 60 ms
61,568 KB
testcase_03 AC 44 ms
52,480 KB
testcase_04 AC 70 ms
65,280 KB
testcase_05 AC 73 ms
65,536 KB
testcase_06 AC 73 ms
65,792 KB
testcase_07 AC 263 ms
86,144 KB
testcase_08 AC 122 ms
80,896 KB
testcase_09 AC 184 ms
86,016 KB
testcase_10 AC 191 ms
76,928 KB
testcase_11 AC 201 ms
82,440 KB
testcase_12 AC 238 ms
89,216 KB
testcase_13 AC 187 ms
87,424 KB
testcase_14 AC 177 ms
83,456 KB
testcase_15 AC 308 ms
82,232 KB
testcase_16 AC 316 ms
78,208 KB
testcase_17 AC 344 ms
89,088 KB
testcase_18 AC 355 ms
89,216 KB
testcase_19 AC 352 ms
89,600 KB
testcase_20 AC 350 ms
88,960 KB
testcase_21 AC 350 ms
89,600 KB
testcase_22 AC 348 ms
89,344 KB
testcase_23 AC 353 ms
89,088 KB
testcase_24 AC 353 ms
89,344 KB
testcase_25 AC 360 ms
89,344 KB
testcase_26 AC 343 ms
89,216 KB
testcase_27 AC 326 ms
88,832 KB
testcase_28 AC 346 ms
88,576 KB
testcase_29 AC 326 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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