結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,012 KB
testcase_01 AC 41 ms
54,804 KB
testcase_02 AC 48 ms
56,912 KB
testcase_03 AC 43 ms
55,436 KB
testcase_04 AC 54 ms
63,352 KB
testcase_05 AC 55 ms
63,916 KB
testcase_06 AC 55 ms
64,572 KB
testcase_07 AC 116 ms
86,716 KB
testcase_08 AC 82 ms
81,308 KB
testcase_09 AC 102 ms
86,672 KB
testcase_10 AC 89 ms
76,624 KB
testcase_11 AC 102 ms
82,720 KB
testcase_12 AC 114 ms
89,748 KB
testcase_13 AC 104 ms
88,448 KB
testcase_14 AC 97 ms
83,756 KB
testcase_15 AC 123 ms
82,752 KB
testcase_16 AC 119 ms
78,336 KB
testcase_17 AC 143 ms
89,988 KB
testcase_18 AC 140 ms
89,968 KB
testcase_19 AC 141 ms
90,040 KB
testcase_20 AC 142 ms
90,248 KB
testcase_21 AC 145 ms
89,964 KB
testcase_22 AC 141 ms
90,000 KB
testcase_23 AC 145 ms
90,180 KB
testcase_24 AC 142 ms
90,000 KB
testcase_25 AC 143 ms
90,256 KB
testcase_26 AC 144 ms
89,992 KB
testcase_27 AC 127 ms
89,416 KB
testcase_28 AC 138 ms
89,496 KB
testcase_29 AC 115 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, m = mi()

a = li()

ans = 0

for v in a:
    ans += v * v

for _ in range(ii()):
    c, k, d = mi()
    c -= 1; d -= 1
    ans -= a[c] ** 2
    ans -= a[d] ** 2
    a[c] -= k
    a[d] += k
    ans += a[c] ** 2
    ans += a[d] ** 2
    print(ans)
0