結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー Meso MesoMeso Meso
提出日時 2024-08-01 09:43:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 981 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,720 KB
最終ジャッジ日時 2024-08-01 09:43:30
合計ジャッジ時間 19,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 36 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 35 ms
10,880 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 559 ms
17,924 KB
testcase_08 AC 113 ms
15,468 KB
testcase_09 AC 326 ms
18,636 KB
testcase_10 AC 351 ms
11,520 KB
testcase_11 AC 380 ms
16,284 KB
testcase_12 AC 512 ms
20,588 KB
testcase_13 AC 323 ms
19,112 KB
testcase_14 AC 286 ms
16,760 KB
testcase_15 AC 766 ms
16,432 KB
testcase_16 AC 773 ms
13,184 KB
testcase_17 AC 937 ms
20,512 KB
testcase_18 AC 881 ms
20,596 KB
testcase_19 AC 881 ms
20,720 KB
testcase_20 AC 969 ms
20,596 KB
testcase_21 AC 883 ms
20,592 KB
testcase_22 AC 884 ms
20,592 KB
testcase_23 AC 876 ms
20,592 KB
testcase_24 AC 881 ms
20,596 KB
testcase_25 AC 981 ms
20,596 KB
testcase_26 AC 926 ms
20,596 KB
testcase_27 AC 765 ms
12,800 KB
testcase_28 AC 867 ms
12,672 KB
testcase_29 AC 827 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = sum(a**2 for a in A)

for i in range(q):
    c, k, d = map(int, input().split())
    ans -= A[c-1] ** 2 + A[d-1] ** 2
    A[c-1] -= k
    A[d-1] += k
    ans += A[c-1] ** 2 + A[d-1] ** 2
    print(ans)
0