結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー Meso MesoMeso Meso
提出日時 2024-08-01 09:32:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 209 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 92,012 KB
最終ジャッジ日時 2024-08-01 09:32:48
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,040 KB
testcase_01 AC 33 ms
52,356 KB
testcase_02 AC 58 ms
73,892 KB
testcase_03 AC 40 ms
62,288 KB
testcase_04 AC 78 ms
75,724 KB
testcase_05 AC 92 ms
75,520 KB
testcase_06 AC 83 ms
75,708 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(q):
    c, k, d = map(int, input().split())
    A[c-1] -= k
    A[d-1] += k
    print(sum(a**2 for a in A))
0