結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,040 KB
testcase_01 AC 45 ms
54,792 KB
testcase_02 AC 56 ms
64,256 KB
testcase_03 AC 49 ms
55,680 KB
testcase_04 AC 65 ms
65,664 KB
testcase_05 AC 68 ms
66,688 KB
testcase_06 AC 68 ms
66,688 KB
testcase_07 AC 155 ms
90,316 KB
testcase_08 AC 99 ms
81,808 KB
testcase_09 AC 118 ms
87,552 KB
testcase_10 AC 116 ms
88,320 KB
testcase_11 AC 123 ms
89,792 KB
testcase_12 AC 142 ms
92,672 KB
testcase_13 AC 117 ms
88,960 KB
testcase_14 AC 106 ms
84,736 KB
testcase_15 AC 172 ms
102,016 KB
testcase_16 AC 166 ms
104,216 KB
testcase_17 AC 184 ms
105,984 KB
testcase_18 AC 181 ms
106,368 KB
testcase_19 AC 181 ms
106,112 KB
testcase_20 AC 181 ms
105,984 KB
testcase_21 AC 181 ms
105,984 KB
testcase_22 AC 182 ms
105,940 KB
testcase_23 AC 187 ms
106,088 KB
testcase_24 AC 182 ms
105,984 KB
testcase_25 AC 188 ms
105,984 KB
testcase_26 AC 187 ms
105,976 KB
testcase_27 AC 167 ms
103,168 KB
testcase_28 AC 177 ms
103,040 KB
testcase_29 AC 174 ms
104,476 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