結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 54 ms
61,952 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 62 ms
65,792 KB
testcase_05 AC 64 ms
66,304 KB
testcase_06 AC 64 ms
66,816 KB
testcase_07 AC 228 ms
85,760 KB
testcase_08 AC 113 ms
81,280 KB
testcase_09 AC 168 ms
86,272 KB
testcase_10 AC 171 ms
77,184 KB
testcase_11 AC 181 ms
82,900 KB
testcase_12 AC 223 ms
89,216 KB
testcase_13 AC 169 ms
87,424 KB
testcase_14 AC 157 ms
83,328 KB
testcase_15 AC 278 ms
82,648 KB
testcase_16 AC 290 ms
78,080 KB
testcase_17 AC 320 ms
89,216 KB
testcase_18 AC 321 ms
89,600 KB
testcase_19 AC 332 ms
89,088 KB
testcase_20 AC 313 ms
89,472 KB
testcase_21 AC 310 ms
89,088 KB
testcase_22 AC 314 ms
89,472 KB
testcase_23 AC 317 ms
89,600 KB
testcase_24 AC 327 ms
88,960 KB
testcase_25 AC 323 ms
89,728 KB
testcase_26 AC 325 ms
89,472 KB
testcase_27 AC 296 ms
87,936 KB
testcase_28 AC 338 ms
88,448 KB
testcase_29 AC 288 ms
76,288 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