結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー 👑 rin204rin204
提出日時 2024-05-04 16:04:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-11-26 04:33:24
合計ジャッジ時間 10,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,152 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 54 ms
61,824 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 62 ms
65,852 KB
testcase_05 AC 65 ms
65,792 KB
testcase_06 AC 67 ms
66,048 KB
testcase_07 AC 242 ms
86,244 KB
testcase_08 AC 111 ms
80,768 KB
testcase_09 AC 168 ms
86,016 KB
testcase_10 AC 173 ms
76,672 KB
testcase_11 AC 185 ms
82,500 KB
testcase_12 AC 212 ms
89,216 KB
testcase_13 AC 173 ms
87,280 KB
testcase_14 AC 161 ms
83,328 KB
testcase_15 AC 270 ms
82,172 KB
testcase_16 AC 276 ms
78,524 KB
testcase_17 AC 315 ms
89,472 KB
testcase_18 AC 309 ms
89,072 KB
testcase_19 AC 310 ms
88,832 KB
testcase_20 AC 312 ms
89,312 KB
testcase_21 AC 306 ms
88,704 KB
testcase_22 AC 317 ms
89,216 KB
testcase_23 AC 312 ms
88,704 KB
testcase_24 AC 320 ms
89,328 KB
testcase_25 AC 331 ms
89,164 KB
testcase_26 AC 325 ms
89,212 KB
testcase_27 AC 292 ms
88,320 KB
testcase_28 AC 313 ms
88,448 KB
testcase_29 AC 283 ms
76,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))

ans = sum(a**2 for a in A)
Q = int(input())
for _ in range(Q):
    c, k, d = map(int, input().split())
    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