結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー dangodango
提出日時 2023-06-25 11:50:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-07-02 12:47:20
合計ジャッジ時間 11,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 69 ms
61,696 KB
testcase_03 AC 44 ms
52,864 KB
testcase_04 AC 71 ms
65,536 KB
testcase_05 AC 72 ms
66,304 KB
testcase_06 AC 73 ms
66,560 KB
testcase_07 AC 258 ms
86,912 KB
testcase_08 AC 123 ms
81,536 KB
testcase_09 AC 187 ms
86,656 KB
testcase_10 AC 194 ms
77,056 KB
testcase_11 AC 203 ms
82,688 KB
testcase_12 AC 242 ms
89,856 KB
testcase_13 AC 187 ms
87,808 KB
testcase_14 AC 177 ms
83,584 KB
testcase_15 AC 309 ms
83,072 KB
testcase_16 AC 318 ms
78,336 KB
testcase_17 AC 350 ms
89,856 KB
testcase_18 AC 351 ms
89,856 KB
testcase_19 AC 362 ms
90,112 KB
testcase_20 AC 351 ms
89,984 KB
testcase_21 AC 346 ms
90,112 KB
testcase_22 AC 358 ms
90,112 KB
testcase_23 AC 355 ms
90,368 KB
testcase_24 AC 354 ms
90,112 KB
testcase_25 AC 352 ms
90,496 KB
testcase_26 AC 356 ms
90,368 KB
testcase_27 AC 324 ms
89,856 KB
testcase_28 AC 368 ms
89,344 KB
testcase_29 AC 320 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
ans = sum([i ** 2 for i in A])
for _ in range(int(input())):
    C, K, D = map(int, input().split())
    BC = A[C - 1]
    BD = A[D - 1]
    AC = BC - K
    AD = BD + K
    ans -= BC ** 2 + BD ** 2
    ans += AC ** 2 + AD ** 2
    A[C - 1] = AC
    A[D - 1] = AD
    print(ans)
0