結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー rlangevinrlangevin
提出日時 2023-05-19 21:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 89,488 KB
最終ジャッジ日時 2024-12-18 02:09:09
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,152 KB
testcase_01 AC 38 ms
52,640 KB
testcase_02 AC 45 ms
55,480 KB
testcase_03 AC 40 ms
53,816 KB
testcase_04 AC 51 ms
62,516 KB
testcase_05 AC 51 ms
62,128 KB
testcase_06 AC 50 ms
61,396 KB
testcase_07 AC 108 ms
85,580 KB
testcase_08 AC 76 ms
80,684 KB
testcase_09 AC 95 ms
86,136 KB
testcase_10 AC 83 ms
76,080 KB
testcase_11 AC 95 ms
81,948 KB
testcase_12 AC 109 ms
89,044 KB
testcase_13 AC 96 ms
87,276 KB
testcase_14 AC 90 ms
83,400 KB
testcase_15 AC 115 ms
82,272 KB
testcase_16 AC 108 ms
77,680 KB
testcase_17 AC 132 ms
89,288 KB
testcase_18 AC 133 ms
88,996 KB
testcase_19 AC 133 ms
89,224 KB
testcase_20 AC 133 ms
89,252 KB
testcase_21 AC 132 ms
89,260 KB
testcase_22 AC 132 ms
89,000 KB
testcase_23 AC 134 ms
88,964 KB
testcase_24 AC 132 ms
89,488 KB
testcase_25 AC 131 ms
89,300 KB
testcase_26 AC 130 ms
88,752 KB
testcase_27 AC 119 ms
88,652 KB
testcase_28 AC 132 ms
88,632 KB
testcase_29 AC 105 ms
75,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
A = list(map(int, input().split()))
Q = int(input())
ans = 0
for a in A:
    ans += a * a
    
for _ in range(Q):
    C, K, D = map(int, input().split())
    C, D = 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