結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー rlangevinrlangevin
提出日時 2023-05-19 21:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-05-10 05:03:21
合計ジャッジ時間 5,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 45 ms
54,656 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 50 ms
61,056 KB
testcase_05 AC 50 ms
61,184 KB
testcase_06 AC 50 ms
61,184 KB
testcase_07 AC 102 ms
85,632 KB
testcase_08 AC 77 ms
80,128 KB
testcase_09 AC 92 ms
85,376 KB
testcase_10 AC 84 ms
76,544 KB
testcase_11 AC 92 ms
81,792 KB
testcase_12 AC 105 ms
88,576 KB
testcase_13 AC 94 ms
86,912 KB
testcase_14 AC 86 ms
82,688 KB
testcase_15 AC 108 ms
82,048 KB
testcase_16 AC 107 ms
77,696 KB
testcase_17 AC 131 ms
88,960 KB
testcase_18 AC 123 ms
89,088 KB
testcase_19 AC 127 ms
89,344 KB
testcase_20 AC 122 ms
88,704 KB
testcase_21 AC 129 ms
88,960 KB
testcase_22 AC 127 ms
89,344 KB
testcase_23 AC 123 ms
88,960 KB
testcase_24 AC 124 ms
88,704 KB
testcase_25 AC 130 ms
88,704 KB
testcase_26 AC 129 ms
88,960 KB
testcase_27 AC 116 ms
88,576 KB
testcase_28 AC 128 ms
88,192 KB
testcase_29 AC 104 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
A = list(map(int, input().split()))
Q = int(input())
ans = 0
for a in A:
    ans += a * a
    
for _ in range(Q):
    C, K, D = map(int, input().split())
    C, D = 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