結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー ああいいああいい
提出日時 2023-05-22 22:35:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 89,760 KB
最終ジャッジ日時 2024-06-02 00:47:08
合計ジャッジ時間 9,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,976 KB
testcase_01 AC 34 ms
53,008 KB
testcase_02 AC 47 ms
62,020 KB
testcase_03 AC 35 ms
53,724 KB
testcase_04 AC 54 ms
65,584 KB
testcase_05 AC 53 ms
67,564 KB
testcase_06 AC 56 ms
66,852 KB
testcase_07 AC 216 ms
85,872 KB
testcase_08 AC 96 ms
81,280 KB
testcase_09 AC 149 ms
86,204 KB
testcase_10 AC 152 ms
77,172 KB
testcase_11 AC 165 ms
82,520 KB
testcase_12 AC 200 ms
89,100 KB
testcase_13 AC 152 ms
87,576 KB
testcase_14 AC 140 ms
83,836 KB
testcase_15 AC 254 ms
82,532 KB
testcase_16 AC 257 ms
78,756 KB
testcase_17 AC 295 ms
89,760 KB
testcase_18 AC 294 ms
89,380 KB
testcase_19 AC 294 ms
89,560 KB
testcase_20 AC 299 ms
89,284 KB
testcase_21 AC 292 ms
89,492 KB
testcase_22 AC 293 ms
89,408 KB
testcase_23 AC 295 ms
89,716 KB
testcase_24 AC 299 ms
89,748 KB
testcase_25 AC 299 ms
89,492 KB
testcase_26 AC 292 ms
89,312 KB
testcase_27 AC 279 ms
88,840 KB
testcase_28 AC 294 ms
88,900 KB
testcase_29 AC 266 ms
76,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))

ans = 0
for a in A:
    ans += a * a
q = int(input())
for _ in range(q):
    c,k,d = map(int,input().split())


    c -= 1
    d -= 1
    ans -= A[c] * A[c]
    A[c] -= k
    ans += A[c] * A[c]
    ans -= A[d] * A[d]
    A[d] += k
    ans += A[d] * A[d]
    print(ans)
    
0