結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー 倉
提出日時 2023-05-19 21:36:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-12-18 02:23:16
合計ジャッジ時間 7,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,784 KB
testcase_01 AC 50 ms
54,656 KB
testcase_02 AC 64 ms
63,616 KB
testcase_03 AC 52 ms
55,424 KB
testcase_04 AC 66 ms
65,024 KB
testcase_05 AC 69 ms
66,304 KB
testcase_06 AC 68 ms
66,304 KB
testcase_07 AC 151 ms
90,108 KB
testcase_08 AC 98 ms
81,664 KB
testcase_09 AC 122 ms
87,040 KB
testcase_10 AC 127 ms
88,064 KB
testcase_11 AC 135 ms
89,088 KB
testcase_12 AC 148 ms
92,544 KB
testcase_13 AC 128 ms
88,704 KB
testcase_14 AC 118 ms
84,992 KB
testcase_15 AC 172 ms
101,504 KB
testcase_16 AC 178 ms
104,064 KB
testcase_17 AC 199 ms
105,856 KB
testcase_18 AC 198 ms
106,240 KB
testcase_19 AC 194 ms
106,112 KB
testcase_20 AC 191 ms
105,984 KB
testcase_21 AC 195 ms
105,984 KB
testcase_22 AC 192 ms
105,856 KB
testcase_23 AC 195 ms
105,856 KB
testcase_24 AC 195 ms
106,112 KB
testcase_25 AC 193 ms
105,728 KB
testcase_26 AC 198 ms
105,856 KB
testcase_27 AC 184 ms
103,040 KB
testcase_28 AC 193 ms
102,912 KB
testcase_29 AC 179 ms
104,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import partial
# import pypyjit
# pypyjit.set_param('max_unroll_recursion = -1')

sys.setrecursionlimit(500005)
stdin = sys.stdin

ns = lambda: stdin.readline().strip()
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
nz = lambda: list(map(lambda x: int(x)-1, stdin.readline().split())) # 遅い
printa = partial(print, sep="\n") # printa(*A) で各要素を改行して出力
mod = 1000000007 # 998244353
inf = 10 ** 18

N, M = na()
A = na()
Q = ni()
L = []
for _ in range(Q):
    L.append(na())

ans = 0
for i in range(M):
    ans += A[i] ** 2

ret = []
for l in L:
    c, k, d = l
    ans += 2 * k * (A[d-1] - A[c-1] + k)
    ret.append(ans)
    A[d-1] += k
    A[c-1] -= k

printa(*ret)
0