結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー とろちゃとろちゃ
提出日時 2023-05-19 21:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-12-18 02:23:23
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 49 ms
61,312 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 53 ms
62,976 KB
testcase_05 AC 53 ms
63,616 KB
testcase_06 AC 53 ms
63,940 KB
testcase_07 AC 129 ms
87,552 KB
testcase_08 AC 84 ms
81,840 KB
testcase_09 AC 110 ms
87,648 KB
testcase_10 AC 105 ms
80,648 KB
testcase_11 AC 110 ms
83,336 KB
testcase_12 AC 128 ms
90,496 KB
testcase_13 AC 109 ms
88,624 KB
testcase_14 AC 101 ms
84,460 KB
testcase_15 AC 145 ms
86,596 KB
testcase_16 AC 148 ms
86,400 KB
testcase_17 AC 168 ms
91,520 KB
testcase_18 AC 201 ms
91,520 KB
testcase_19 AC 189 ms
91,444 KB
testcase_20 AC 168 ms
91,576 KB
testcase_21 AC 195 ms
91,136 KB
testcase_22 AC 196 ms
91,220 KB
testcase_23 AC 170 ms
91,264 KB
testcase_24 AC 168 ms
91,512 KB
testcase_25 AC 170 ms
91,776 KB
testcase_26 AC 167 ms
91,136 KB
testcase_27 AC 153 ms
90,368 KB
testcase_28 AC 166 ms
90,400 KB
testcase_29 AC 148 ms
86,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1")
# from bisect import *
# from collections import *
# from heapq import *
# from itertools import *
# from math import *
# from datetime import *
# from decimal import*
# from string import ascii_lowercase,ascii_uppercase
# import numpy as np
import sys
import os

# sys.setrecursionlimit(10**6)
INF = 10**18
MOD = 998244353
# MOD = 10**9 + 7
File = open("input.txt", "r") if os.path.exists("input.txt") else sys.stdin


def input():
    return File.readline()[:-1]


# ///////////////////////////////////////////////////////////////////////////


N, M = map(int, input().split())
A = [0] + list(map(int, input().split()))
Q = int(input())
query = [list(map(int, input().split())) for _ in range(Q)]
powerSum = sum([A[i] ** 2 for i in range(M + 1)])

for c, k, d in query:
    powerSum -= A[c] ** 2
    powerSum -= A[d] ** 2
    A[c] -= k
    A[d] += k
    powerSum += A[c] ** 2
    powerSum += A[d] ** 2
    print(powerSum)
0