結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-19 22:19:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 89,776 KB
最終ジャッジ日時 2024-12-18 03:02:07
合計ジャッジ時間 8,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
51,820 KB
testcase_02 AC 50 ms
61,916 KB
testcase_03 AC 36 ms
53,004 KB
testcase_04 AC 59 ms
67,036 KB
testcase_05 AC 62 ms
67,884 KB
testcase_06 AC 60 ms
66,900 KB
testcase_07 AC 225 ms
86,360 KB
testcase_08 AC 102 ms
80,736 KB
testcase_09 AC 158 ms
86,500 KB
testcase_10 AC 168 ms
76,944 KB
testcase_11 AC 176 ms
82,616 KB
testcase_12 AC 210 ms
89,336 KB
testcase_13 AC 160 ms
87,400 KB
testcase_14 AC 147 ms
83,508 KB
testcase_15 AC 269 ms
82,320 KB
testcase_16 AC 267 ms
78,204 KB
testcase_17 AC 311 ms
89,412 KB
testcase_18 AC 307 ms
89,484 KB
testcase_19 AC 306 ms
89,080 KB
testcase_20 AC 300 ms
89,396 KB
testcase_21 AC 309 ms
89,360 KB
testcase_22 AC 310 ms
89,368 KB
testcase_23 AC 308 ms
89,640 KB
testcase_24 AC 306 ms
89,192 KB
testcase_25 AC 308 ms
89,276 KB
testcase_26 AC 309 ms
89,776 KB
testcase_27 AC 283 ms
88,580 KB
testcase_28 AC 296 ms
88,472 KB
testcase_29 AC 273 ms
76,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = list(map(int,input().split()))

score = 0
for a in A:
    score += a**2

q = int(input())
for _ in range(q):
    c,k,d = map(int,input().split())
    c,d = c-1,d-1

    score -= A[c]**2 + A[d]**2

    A[c] -= k
    A[d] += k

    score += A[c]**2 + A[d]**2

    print(score)
0