結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー lloyzlloyz
提出日時 2023-05-19 21:24:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 89,808 KB
最終ジャッジ日時 2024-12-18 02:11:15
合計ジャッジ時間 4,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,276 KB
testcase_01 AC 33 ms
52,180 KB
testcase_02 AC 39 ms
55,412 KB
testcase_03 AC 38 ms
53,600 KB
testcase_04 AC 47 ms
62,160 KB
testcase_05 AC 45 ms
62,844 KB
testcase_06 AC 44 ms
63,468 KB
testcase_07 AC 95 ms
85,548 KB
testcase_08 AC 69 ms
80,848 KB
testcase_09 AC 83 ms
85,744 KB
testcase_10 AC 75 ms
76,288 KB
testcase_11 AC 82 ms
81,908 KB
testcase_12 AC 100 ms
88,924 KB
testcase_13 AC 85 ms
86,984 KB
testcase_14 AC 82 ms
83,316 KB
testcase_15 AC 102 ms
82,032 KB
testcase_16 AC 100 ms
77,504 KB
testcase_17 AC 118 ms
89,260 KB
testcase_18 AC 119 ms
89,472 KB
testcase_19 AC 116 ms
89,444 KB
testcase_20 AC 114 ms
89,516 KB
testcase_21 AC 114 ms
89,516 KB
testcase_22 AC 115 ms
89,808 KB
testcase_23 AC 114 ms
89,380 KB
testcase_24 AC 118 ms
89,656 KB
testcase_25 AC 119 ms
89,592 KB
testcase_26 AC 117 ms
89,516 KB
testcase_27 AC 109 ms
88,548 KB
testcase_28 AC 116 ms
88,540 KB
testcase_29 AC 92 ms
75,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, m = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
for i in range(m):
    ans += pow(A[i], 2)
q = int(input())
for _ in range(q):
    c, k, d = map(int, input().split())
    c -= 1
    d -= 1
    ans -= pow(A[c], 2) + pow(A[d], 2)
    A[c] -= k
    A[d] += k
    ans += pow(A[c], 2) + pow(A[d], 2)
    print(ans)
0