結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー koarakko5555koarakko5555
提出日時 2023-05-19 21:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 89,624 KB
最終ジャッジ日時 2024-12-18 02:31:10
合計ジャッジ時間 9,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,152 KB
testcase_01 AC 38 ms
52,416 KB
testcase_02 AC 56 ms
62,128 KB
testcase_03 AC 42 ms
54,380 KB
testcase_04 AC 66 ms
66,028 KB
testcase_05 AC 66 ms
66,660 KB
testcase_06 AC 67 ms
67,112 KB
testcase_07 AC 255 ms
86,084 KB
testcase_08 AC 116 ms
81,244 KB
testcase_09 AC 180 ms
86,212 KB
testcase_10 AC 189 ms
77,108 KB
testcase_11 AC 202 ms
82,572 KB
testcase_12 AC 241 ms
89,052 KB
testcase_13 AC 181 ms
87,536 KB
testcase_14 AC 169 ms
83,528 KB
testcase_15 AC 311 ms
82,600 KB
testcase_16 AC 312 ms
78,184 KB
testcase_17 AC 355 ms
89,460 KB
testcase_18 AC 351 ms
89,352 KB
testcase_19 AC 351 ms
89,428 KB
testcase_20 AC 353 ms
89,448 KB
testcase_21 AC 357 ms
89,528 KB
testcase_22 AC 354 ms
89,624 KB
testcase_23 AC 357 ms
89,516 KB
testcase_24 AC 352 ms
89,152 KB
testcase_25 AC 352 ms
89,428 KB
testcase_26 AC 351 ms
89,152 KB
testcase_27 AC 320 ms
88,264 KB
testcase_28 AC 369 ms
88,688 KB
testcase_29 AC 315 ms
76,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    #修正
    A[d] += k
    A[c] = max(0, A[c]-k)
    ans1 = ans

0