結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー titiatitia
提出日時 2023-05-19 21:49:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,612 KB
最終ジャッジ日時 2024-05-10 05:24:09
合計ジャッジ時間 10,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 280 ms
17,952 KB
testcase_08 AC 76 ms
14,768 KB
testcase_09 AC 183 ms
18,396 KB
testcase_10 AC 166 ms
11,392 KB
testcase_11 AC 192 ms
15,920 KB
testcase_12 AC 256 ms
19,796 KB
testcase_13 AC 192 ms
18,752 KB
testcase_14 AC 173 ms
16,664 KB
testcase_15 AC 349 ms
16,128 KB
testcase_16 AC 364 ms
12,928 KB
testcase_17 AC 425 ms
20,364 KB
testcase_18 AC 428 ms
20,232 KB
testcase_19 AC 430 ms
20,612 KB
testcase_20 AC 426 ms
20,488 KB
testcase_21 AC 438 ms
20,360 KB
testcase_22 AC 426 ms
20,488 KB
testcase_23 AC 455 ms
20,360 KB
testcase_24 AC 418 ms
20,484 KB
testcase_25 AC 440 ms
20,612 KB
testcase_26 AC 422 ms
20,492 KB
testcase_27 AC 349 ms
12,148 KB
testcase_28 AC 363 ms
12,408 KB
testcase_29 AC 342 ms
10,752 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 tests in range(Q):
    c,k,d=map(int,input().split())
    c-=1
    ANS-=A[c]*A[c]

    A[c]-=k
    ANS+=A[c]*A[c]

    d-=1
    ANS-=A[d]*A[d]
    A[d]+=k
    ANS+=A[d]*A[d]

    print(ANS)
0