結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー 👑 KazunKazun
提出日時 2023-02-16 03:32:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-07-22 04:02:59
合計ジャッジ時間 7,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 47 ms
54,528 KB
testcase_05 AC 49 ms
54,272 KB
testcase_06 AC 47 ms
54,656 KB
testcase_07 AC 110 ms
85,888 KB
testcase_08 AC 75 ms
77,312 KB
testcase_09 AC 97 ms
86,528 KB
testcase_10 AC 84 ms
77,824 KB
testcase_11 AC 88 ms
82,560 KB
testcase_12 AC 101 ms
90,236 KB
testcase_13 AC 100 ms
87,680 KB
testcase_14 AC 92 ms
83,712 KB
testcase_15 AC 112 ms
83,072 KB
testcase_16 AC 108 ms
81,280 KB
testcase_17 AC 130 ms
90,112 KB
testcase_18 AC 128 ms
90,112 KB
testcase_19 AC 128 ms
89,984 KB
testcase_20 AC 129 ms
90,496 KB
testcase_21 AC 131 ms
90,240 KB
testcase_22 AC 129 ms
90,112 KB
testcase_23 AC 131 ms
89,856 KB
testcase_24 AC 129 ms
90,368 KB
testcase_25 AC 141 ms
89,984 KB
testcase_26 AC 128 ms
90,112 KB
testcase_27 AC 120 ms
89,344 KB
testcase_28 AC 123 ms
89,600 KB
testcase_29 AC 100 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,M=map(int,input().split())
    A=[0]+list(map(int,input().split()))

    power=sum(a*a for a in A)

    Q=int(input())
    Ans=[0]*Q
    for q in range(Q):
        C,K,D=map(int,input().split())
        power+=(A[D]+K)*(A[D]+K)+(A[C]-K)*(A[C]-K)-(A[D]*A[D]+A[C]*A[C])
        A[D]+=K; A[C]-=K
        Ans[q]=power
    return Ans

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

write("\n".join(map(str,solve())))
0