結果

問題 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  
実行時間 818 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,472 KB
最終ジャッジ日時 2024-12-18 02:12:54
合計ジャッジ時間 17,310 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 32 ms
10,496 KB
testcase_07 AC 512 ms
17,812 KB
testcase_08 AC 107 ms
15,228 KB
testcase_09 AC 299 ms
18,520 KB
testcase_10 AC 323 ms
11,392 KB
testcase_11 AC 329 ms
16,028 KB
testcase_12 AC 461 ms
19,792 KB
testcase_13 AC 296 ms
18,992 KB
testcase_14 AC 251 ms
16,512 KB
testcase_15 AC 668 ms
16,404 KB
testcase_16 AC 739 ms
13,056 KB
testcase_17 AC 806 ms
20,464 KB
testcase_18 AC 795 ms
20,464 KB
testcase_19 AC 790 ms
20,340 KB
testcase_20 AC 817 ms
20,336 KB
testcase_21 AC 808 ms
20,472 KB
testcase_22 AC 792 ms
20,340 KB
testcase_23 AC 800 ms
20,468 KB
testcase_24 AC 800 ms
20,460 KB
testcase_25 AC 817 ms
20,468 KB
testcase_26 AC 818 ms
20,472 KB
testcase_27 AC 709 ms
12,544 KB
testcase_28 AC 722 ms
12,672 KB
testcase_29 AC 723 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