結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 50 ms
56,576 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 55 ms
63,232 KB
testcase_05 AC 61 ms
63,616 KB
testcase_06 AC 60 ms
63,488 KB
testcase_07 AC 128 ms
87,168 KB
testcase_08 AC 89 ms
81,152 KB
testcase_09 AC 110 ms
86,840 KB
testcase_10 AC 96 ms
76,544 KB
testcase_11 AC 112 ms
82,940 KB
testcase_12 AC 119 ms
89,856 KB
testcase_13 AC 106 ms
88,320 KB
testcase_14 AC 98 ms
83,840 KB
testcase_15 AC 125 ms
82,944 KB
testcase_16 AC 116 ms
78,592 KB
testcase_17 AC 155 ms
90,308 KB
testcase_18 AC 144 ms
89,984 KB
testcase_19 AC 145 ms
89,984 KB
testcase_20 AC 145 ms
90,496 KB
testcase_21 AC 146 ms
89,984 KB
testcase_22 AC 152 ms
90,192 KB
testcase_23 AC 151 ms
90,112 KB
testcase_24 AC 151 ms
90,112 KB
testcase_25 AC 145 ms
89,984 KB
testcase_26 AC 151 ms
90,368 KB
testcase_27 AC 134 ms
89,216 KB
testcase_28 AC 150 ms
89,304 KB
testcase_29 AC 124 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