結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー first_vilfirst_vil
提出日時 2023-05-20 08:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 89,400 KB
最終ジャッジ日時 2024-06-01 04:51:33
合計ジャッジ時間 11,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,012 KB
testcase_01 AC 38 ms
53,160 KB
testcase_02 AC 55 ms
62,480 KB
testcase_03 AC 42 ms
53,652 KB
testcase_04 AC 64 ms
66,636 KB
testcase_05 AC 65 ms
66,840 KB
testcase_06 AC 66 ms
67,664 KB
testcase_07 AC 253 ms
85,696 KB
testcase_08 AC 111 ms
81,356 KB
testcase_09 AC 175 ms
86,412 KB
testcase_10 AC 185 ms
77,652 KB
testcase_11 AC 197 ms
82,440 KB
testcase_12 AC 228 ms
89,216 KB
testcase_13 AC 178 ms
87,888 KB
testcase_14 AC 166 ms
83,580 KB
testcase_15 AC 297 ms
82,356 KB
testcase_16 AC 303 ms
78,100 KB
testcase_17 AC 340 ms
89,400 KB
testcase_18 AC 343 ms
88,928 KB
testcase_19 AC 346 ms
89,020 KB
testcase_20 AC 345 ms
89,036 KB
testcase_21 AC 346 ms
89,100 KB
testcase_22 AC 351 ms
89,044 KB
testcase_23 AC 337 ms
88,988 KB
testcase_24 AC 346 ms
88,924 KB
testcase_25 AC 343 ms
89,356 KB
testcase_26 AC 337 ms
89,396 KB
testcase_27 AC 313 ms
88,816 KB
testcase_28 AC 330 ms
88,664 KB
testcase_29 AC 307 ms
76,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mi=lambda: map(int,input().split())
li=lambda: list(mi())
ii=lambda: int(input())

n,m=mi()
a=li()
sp=sum(x**2 for x in a)
for _ in range(ii()):
	c,k,d=mi()
	c-=1
	d-=1
	sp-=a[c]**2+a[d]**2
	a[c]-=k
	a[d]+=k
	sp+=a[c]**2+a[d]**2
	print(sp)
0