結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,416 KB
testcase_01 AC 38 ms
51,920 KB
testcase_02 AC 58 ms
61,824 KB
testcase_03 AC 43 ms
52,972 KB
testcase_04 AC 69 ms
65,536 KB
testcase_05 AC 69 ms
66,580 KB
testcase_06 AC 72 ms
66,688 KB
testcase_07 AC 261 ms
86,528 KB
testcase_08 AC 123 ms
81,188 KB
testcase_09 AC 189 ms
86,144 KB
testcase_10 AC 195 ms
77,104 KB
testcase_11 AC 203 ms
82,592 KB
testcase_12 AC 239 ms
89,276 KB
testcase_13 AC 193 ms
87,624 KB
testcase_14 AC 180 ms
83,196 KB
testcase_15 AC 312 ms
82,660 KB
testcase_16 AC 317 ms
78,272 KB
testcase_17 AC 350 ms
89,216 KB
testcase_18 AC 345 ms
89,408 KB
testcase_19 AC 353 ms
89,580 KB
testcase_20 AC 353 ms
89,344 KB
testcase_21 AC 354 ms
89,644 KB
testcase_22 AC 359 ms
89,472 KB
testcase_23 AC 351 ms
89,268 KB
testcase_24 AC 354 ms
89,460 KB
testcase_25 AC 356 ms
89,344 KB
testcase_26 AC 352 ms
89,472 KB
testcase_27 AC 330 ms
88,192 KB
testcase_28 AC 349 ms
88,576 KB
testcase_29 AC 328 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
power_now=0
for i in range(M):
    power_now+=A[i]**2
Q=int(input())
for _ in range(Q):
    c,k,d=map(int,input().split())
    c-=1
    d-=1
    a_c=A[c]
    a_d=A[d]
    power_now-=(a_c**2+a_d**2)
    A[d]+=k
    A[c]-=k
    a_c=A[c]
    a_d=A[d]
    power_now+=(a_c**2+a_d**2)
    print(power_now)
0