結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 53 ms
61,952 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 65 ms
65,920 KB
testcase_05 AC 63 ms
66,432 KB
testcase_06 AC 63 ms
66,944 KB
testcase_07 AC 253 ms
86,812 KB
testcase_08 AC 112 ms
81,280 KB
testcase_09 AC 176 ms
86,912 KB
testcase_10 AC 182 ms
77,184 KB
testcase_11 AC 188 ms
82,892 KB
testcase_12 AC 226 ms
89,856 KB
testcase_13 AC 188 ms
87,872 KB
testcase_14 AC 163 ms
84,016 KB
testcase_15 AC 292 ms
83,020 KB
testcase_16 AC 317 ms
78,464 KB
testcase_17 AC 360 ms
90,240 KB
testcase_18 AC 346 ms
90,048 KB
testcase_19 AC 334 ms
90,252 KB
testcase_20 AC 348 ms
90,496 KB
testcase_21 AC 346 ms
90,056 KB
testcase_22 AC 341 ms
90,112 KB
testcase_23 AC 347 ms
90,664 KB
testcase_24 AC 353 ms
90,368 KB
testcase_25 AC 348 ms
90,048 KB
testcase_26 AC 346 ms
90,240 KB
testcase_27 AC 319 ms
89,216 KB
testcase_28 AC 347 ms
89,472 KB
testcase_29 AC 326 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
count = [0]*M
calc = 0
for i in range(M):
    count[i] = A[i]
    calc += count[i]**2
Q = int(input())
for i in range(Q):
    c, k, d = map(int, input().split())
    calc -= count[c-1]**2
    count[c-1] -= k
    calc += count[c-1]**2
    calc -= count[d-1]**2
    count[d-1] += k
    calc += count[d-1]**2   
    print(calc)
    #print(count)
0