結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー first_vilfirst_vil
提出日時 2023-05-20 08:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 89,252 KB
最終ジャッジ日時 2024-12-21 07:41:39
合計ジャッジ時間 12,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 63 ms
61,696 KB
testcase_03 AC 48 ms
52,864 KB
testcase_04 AC 74 ms
65,664 KB
testcase_05 AC 74 ms
66,304 KB
testcase_06 AC 75 ms
66,432 KB
testcase_07 AC 278 ms
85,760 KB
testcase_08 AC 129 ms
80,768 KB
testcase_09 AC 196 ms
85,888 KB
testcase_10 AC 197 ms
76,928 KB
testcase_11 AC 220 ms
82,508 KB
testcase_12 AC 249 ms
88,960 KB
testcase_13 AC 198 ms
87,552 KB
testcase_14 AC 191 ms
83,072 KB
testcase_15 AC 322 ms
82,496 KB
testcase_16 AC 317 ms
78,208 KB
testcase_17 AC 371 ms
89,088 KB
testcase_18 AC 371 ms
89,216 KB
testcase_19 AC 375 ms
88,832 KB
testcase_20 AC 374 ms
89,088 KB
testcase_21 AC 371 ms
89,088 KB
testcase_22 AC 373 ms
89,088 KB
testcase_23 AC 374 ms
88,832 KB
testcase_24 AC 375 ms
89,088 KB
testcase_25 AC 379 ms
89,252 KB
testcase_26 AC 366 ms
89,160 KB
testcase_27 AC 340 ms
88,320 KB
testcase_28 AC 366 ms
88,064 KB
testcase_29 AC 340 ms
76,236 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