結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー miho-4miho-4
提出日時 2023-05-19 21:42:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-05-10 05:19:04
合計ジャッジ時間 7,892 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 60 ms
63,616 KB
testcase_03 AC 43 ms
53,120 KB
testcase_04 AC 70 ms
66,944 KB
testcase_05 AC 71 ms
67,584 KB
testcase_06 AC 72 ms
68,096 KB
testcase_07 AC 176 ms
86,784 KB
testcase_08 AC 108 ms
81,408 KB
testcase_09 AC 143 ms
86,656 KB
testcase_10 AC 139 ms
81,024 KB
testcase_11 AC 146 ms
83,296 KB
testcase_12 AC 171 ms
90,624 KB
testcase_13 AC 145 ms
88,064 KB
testcase_14 AC 136 ms
84,352 KB
testcase_15 AC 196 ms
86,584 KB
testcase_16 AC 198 ms
87,296 KB
testcase_17 AC 221 ms
90,752 KB
testcase_18 AC 227 ms
90,880 KB
testcase_19 AC 222 ms
91,008 KB
testcase_20 AC 219 ms
91,264 KB
testcase_21 AC 222 ms
90,752 KB
testcase_22 AC 224 ms
90,752 KB
testcase_23 AC 221 ms
90,752 KB
testcase_24 AC 219 ms
90,752 KB
testcase_25 AC 220 ms
90,880 KB
testcase_26 AC 233 ms
90,880 KB
testcase_27 AC 217 ms
89,600 KB
testcase_28 AC 217 ms
89,728 KB
testcase_29 AC 204 ms
87,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
L=list(map(int,input().split()))
q=int(input())
Q=[list(map(int,input().split())) for _ in range(q)]
tmp=0
for e in L:
  tmp+=e**2

for c,k,d in Q:
  c-=1
  d-=1
  tmp-=L[c]**2
  tmp-=L[d]**2
  L[c]-=k
  L[d]+=k
  tmp+=L[c]**2
  tmp+=L[d]**2
  print(tmp)
0