結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 62 ms
63,360 KB
testcase_03 AC 43 ms
53,120 KB
testcase_04 AC 68 ms
66,944 KB
testcase_05 AC 72 ms
67,328 KB
testcase_06 AC 71 ms
67,840 KB
testcase_07 AC 176 ms
86,656 KB
testcase_08 AC 110 ms
81,536 KB
testcase_09 AC 141 ms
86,656 KB
testcase_10 AC 138 ms
80,896 KB
testcase_11 AC 147 ms
83,048 KB
testcase_12 AC 168 ms
90,368 KB
testcase_13 AC 142 ms
88,320 KB
testcase_14 AC 135 ms
83,840 KB
testcase_15 AC 192 ms
86,596 KB
testcase_16 AC 198 ms
87,296 KB
testcase_17 AC 220 ms
90,752 KB
testcase_18 AC 221 ms
90,624 KB
testcase_19 AC 223 ms
90,624 KB
testcase_20 AC 225 ms
91,008 KB
testcase_21 AC 223 ms
90,624 KB
testcase_22 AC 223 ms
90,752 KB
testcase_23 AC 214 ms
90,880 KB
testcase_24 AC 217 ms
90,624 KB
testcase_25 AC 220 ms
90,752 KB
testcase_26 AC 218 ms
90,880 KB
testcase_27 AC 212 ms
89,472 KB
testcase_28 AC 216 ms
89,600 KB
testcase_29 AC 198 ms
86,912 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