結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー colognecologne
提出日時 2023-08-05 13:01:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-10-15 10:07:43
合計ジャッジ時間 7,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 47 ms
54,656 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 55 ms
61,056 KB
testcase_05 AC 57 ms
61,568 KB
testcase_06 AC 56 ms
61,440 KB
testcase_07 AC 123 ms
87,808 KB
testcase_08 AC 88 ms
81,408 KB
testcase_09 AC 110 ms
88,064 KB
testcase_10 AC 96 ms
75,904 KB
testcase_11 AC 108 ms
83,328 KB
testcase_12 AC 126 ms
91,904 KB
testcase_13 AC 113 ms
89,600 KB
testcase_14 AC 106 ms
84,864 KB
testcase_15 AC 127 ms
83,584 KB
testcase_16 AC 122 ms
78,208 KB
testcase_17 AC 146 ms
91,136 KB
testcase_18 AC 147 ms
91,776 KB
testcase_19 AC 143 ms
91,648 KB
testcase_20 AC 145 ms
91,392 KB
testcase_21 AC 148 ms
91,392 KB
testcase_22 AC 145 ms
91,648 KB
testcase_23 AC 148 ms
91,008 KB
testcase_24 AC 151 ms
91,008 KB
testcase_25 AC 145 ms
91,776 KB
testcase_26 AC 143 ms
91,008 KB
testcase_27 AC 132 ms
91,008 KB
testcase_28 AC 151 ms
90,880 KB
testcase_29 AC 117 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().rstrip()


def main():
    N, M = map(int, input().split())
    *A, = map(int, input().split())
    z = sum(i**2 for i in A)
    Q = int(input())
    for i in range(Q):
        c, k, d = map(int, input().split())
        c -= 1
        d -= 1
        z -= A[c]**2 + A[d]**2
        A[c] -= k
        A[d] += k
        z += A[c]**2 + A[d]**2
        print(z)


if __name__ == '__main__':
    main()
0