結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 61 ms
62,080 KB
testcase_03 AC 44 ms
53,120 KB
testcase_04 AC 69 ms
65,792 KB
testcase_05 AC 73 ms
66,304 KB
testcase_06 AC 74 ms
66,432 KB
testcase_07 AC 262 ms
86,144 KB
testcase_08 AC 120 ms
81,024 KB
testcase_09 AC 184 ms
86,400 KB
testcase_10 AC 198 ms
77,312 KB
testcase_11 AC 212 ms
82,800 KB
testcase_12 AC 241 ms
89,344 KB
testcase_13 AC 191 ms
87,552 KB
testcase_14 AC 176 ms
83,456 KB
testcase_15 AC 315 ms
82,912 KB
testcase_16 AC 319 ms
78,336 KB
testcase_17 AC 350 ms
89,600 KB
testcase_18 AC 352 ms
89,344 KB
testcase_19 AC 354 ms
89,600 KB
testcase_20 AC 349 ms
89,600 KB
testcase_21 AC 355 ms
89,472 KB
testcase_22 AC 347 ms
89,344 KB
testcase_23 AC 358 ms
89,344 KB
testcase_24 AC 340 ms
89,472 KB
testcase_25 AC 350 ms
89,472 KB
testcase_26 AC 348 ms
89,472 KB
testcase_27 AC 332 ms
88,576 KB
testcase_28 AC 349 ms
88,704 KB
testcase_29 AC 327 ms
76,544 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