結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー n_nan_na
提出日時 2023-05-19 22:59:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 89,672 KB
最終ジャッジ日時 2024-12-20 01:33:08
合計ジャッジ時間 9,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,796 KB
testcase_02 AC 54 ms
62,312 KB
testcase_03 AC 39 ms
53,216 KB
testcase_04 AC 62 ms
66,832 KB
testcase_05 AC 65 ms
67,712 KB
testcase_06 AC 65 ms
66,452 KB
testcase_07 AC 244 ms
86,008 KB
testcase_08 AC 111 ms
81,052 KB
testcase_09 AC 176 ms
86,240 KB
testcase_10 AC 182 ms
76,936 KB
testcase_11 AC 193 ms
82,648 KB
testcase_12 AC 228 ms
89,204 KB
testcase_13 AC 178 ms
87,520 KB
testcase_14 AC 164 ms
83,504 KB
testcase_15 AC 296 ms
82,524 KB
testcase_16 AC 310 ms
78,420 KB
testcase_17 AC 335 ms
89,272 KB
testcase_18 AC 339 ms
89,392 KB
testcase_19 AC 330 ms
89,464 KB
testcase_20 AC 330 ms
89,408 KB
testcase_21 AC 335 ms
89,380 KB
testcase_22 AC 337 ms
89,672 KB
testcase_23 AC 331 ms
89,556 KB
testcase_24 AC 342 ms
89,408 KB
testcase_25 AC 332 ms
89,152 KB
testcase_26 AC 344 ms
89,416 KB
testcase_27 AC 310 ms
88,584 KB
testcase_28 AC 328 ms
88,744 KB
testcase_29 AC 299 ms
76,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))

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

Q = int(input())
for _ in range(Q):
    C,K,D = map(int,input().split())
    S -= A[C-1]*A[C-1]
    S -= A[D-1]*A[D-1]
    A[C-1] -= K
    A[D-1] += K
    S += A[C-1]*A[C-1]
    S += A[D-1]*A[D-1]
    print(S)
    
    
0