結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー timitimi
提出日時 2023-05-19 21:34:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 89,736 KB
最終ジャッジ日時 2024-12-18 02:22:05
合計ジャッジ時間 9,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,996 KB
testcase_01 AC 37 ms
53,828 KB
testcase_02 AC 54 ms
61,896 KB
testcase_03 AC 40 ms
53,708 KB
testcase_04 AC 61 ms
66,560 KB
testcase_05 AC 63 ms
66,748 KB
testcase_06 AC 64 ms
67,708 KB
testcase_07 AC 245 ms
86,420 KB
testcase_08 AC 112 ms
81,152 KB
testcase_09 AC 177 ms
86,200 KB
testcase_10 AC 179 ms
76,936 KB
testcase_11 AC 198 ms
82,860 KB
testcase_12 AC 228 ms
89,192 KB
testcase_13 AC 180 ms
87,592 KB
testcase_14 AC 163 ms
83,368 KB
testcase_15 AC 295 ms
82,504 KB
testcase_16 AC 296 ms
78,324 KB
testcase_17 AC 340 ms
89,600 KB
testcase_18 AC 343 ms
89,472 KB
testcase_19 AC 337 ms
89,320 KB
testcase_20 AC 340 ms
89,324 KB
testcase_21 AC 340 ms
89,408 KB
testcase_22 AC 346 ms
89,500 KB
testcase_23 AC 343 ms
89,492 KB
testcase_24 AC 340 ms
89,384 KB
testcase_25 AC 339 ms
89,736 KB
testcase_26 AC 348 ms
89,572 KB
testcase_27 AC 322 ms
88,776 KB
testcase_28 AC 333 ms
88,604 KB
testcase_29 AC 306 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
now=0
for a in A:
  now+=a**2 
  
Q=int(input())
for _ in range(Q):
  c,k,d=map(int, input().split())
  c-=1;d-=1
  now-=A[c]**2+A[d]**2
  A[c]-=k;A[d]+=k
  now+=A[c]**2+A[d]**2
  print(now)
0