結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 57 ms
61,056 KB
testcase_03 AC 42 ms
52,736 KB
testcase_04 AC 69 ms
65,152 KB
testcase_05 AC 71 ms
65,536 KB
testcase_06 AC 72 ms
66,048 KB
testcase_07 AC 250 ms
85,888 KB
testcase_08 AC 117 ms
81,280 KB
testcase_09 AC 182 ms
86,144 KB
testcase_10 AC 185 ms
76,544 KB
testcase_11 AC 195 ms
82,472 KB
testcase_12 AC 231 ms
88,960 KB
testcase_13 AC 187 ms
87,424 KB
testcase_14 AC 172 ms
83,072 KB
testcase_15 AC 294 ms
82,460 KB
testcase_16 AC 300 ms
77,824 KB
testcase_17 AC 335 ms
88,960 KB
testcase_18 AC 329 ms
89,216 KB
testcase_19 AC 325 ms
89,088 KB
testcase_20 AC 326 ms
89,344 KB
testcase_21 AC 328 ms
89,216 KB
testcase_22 AC 325 ms
88,960 KB
testcase_23 AC 346 ms
89,344 KB
testcase_24 AC 333 ms
88,832 KB
testcase_25 AC 333 ms
88,960 KB
testcase_26 AC 329 ms
88,960 KB
testcase_27 AC 313 ms
88,320 KB
testcase_28 AC 352 ms
88,320 KB
testcase_29 AC 306 ms
76,032 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