結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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