結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー ニックネームニックネーム
提出日時 2023-05-19 21:24:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 872 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,596 KB
最終ジャッジ日時 2024-05-10 05:07:27
合計ジャッジ時間 16,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 503 ms
17,936 KB
testcase_08 AC 100 ms
15,476 KB
testcase_09 AC 286 ms
18,392 KB
testcase_10 AC 322 ms
11,264 KB
testcase_11 AC 344 ms
16,024 KB
testcase_12 AC 444 ms
19,908 KB
testcase_13 AC 298 ms
18,996 KB
testcase_14 AC 260 ms
16,516 KB
testcase_15 AC 668 ms
16,308 KB
testcase_16 AC 721 ms
13,184 KB
testcase_17 AC 809 ms
20,472 KB
testcase_18 AC 802 ms
20,340 KB
testcase_19 AC 802 ms
20,596 KB
testcase_20 AC 872 ms
20,468 KB
testcase_21 AC 798 ms
20,468 KB
testcase_22 AC 809 ms
20,464 KB
testcase_23 AC 796 ms
20,308 KB
testcase_24 AC 814 ms
20,468 KB
testcase_25 AC 826 ms
20,596 KB
testcase_26 AC 783 ms
20,472 KB
testcase_27 AC 700 ms
12,544 KB
testcase_28 AC 729 ms
12,800 KB
testcase_29 AC 713 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [0]+list(map(int,input().split()))
p = sum(v**2 for v in a)
for _ in range(int(input())):
    c,k,d = map(int,input().split())
    p -= a[c]**2+a[d]**2
    a[c] -= k; a[d] += k
    p += a[c]**2+a[d]**2
    print(p)
0