結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 60 ms
62,840 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 70 ms
66,644 KB
testcase_05 AC 68 ms
67,456 KB
testcase_06 AC 74 ms
67,840 KB
testcase_07 AC 264 ms
86,144 KB
testcase_08 AC 124 ms
81,536 KB
testcase_09 AC 189 ms
86,068 KB
testcase_10 AC 200 ms
76,952 KB
testcase_11 AC 205 ms
82,524 KB
testcase_12 AC 234 ms
89,344 KB
testcase_13 AC 194 ms
87,808 KB
testcase_14 AC 181 ms
83,228 KB
testcase_15 AC 309 ms
82,448 KB
testcase_16 AC 314 ms
78,336 KB
testcase_17 AC 346 ms
89,544 KB
testcase_18 AC 347 ms
90,112 KB
testcase_19 AC 346 ms
89,984 KB
testcase_20 AC 344 ms
89,600 KB
testcase_21 AC 351 ms
89,704 KB
testcase_22 AC 343 ms
89,344 KB
testcase_23 AC 347 ms
89,560 KB
testcase_24 AC 344 ms
89,728 KB
testcase_25 AC 344 ms
89,728 KB
testcase_26 AC 347 ms
89,600 KB
testcase_27 AC 324 ms
88,448 KB
testcase_28 AC 340 ms
88,448 KB
testcase_29 AC 314 ms
77,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
ans = 0
for v in a:
  ans += v ** 2
for _ in range(int(input())):
  c, k, d = map(lambda x: int(x)-1, input().split())
  k += 1
  ans -= a[c] ** 2
  a[c] -= k
  ans += a[c] ** 2
  ans -= a[d] ** 2
  a[d] += k
  ans += a[d] ** 2
  print(ans)
0