結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー kotatsugamekotatsugame
提出日時 2023-05-19 21:22:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 63,096 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-18 02:08:04
合計ジャッジ時間 7,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 162 ms
6,820 KB
testcase_08 AC 33 ms
6,820 KB
testcase_09 AC 94 ms
6,820 KB
testcase_10 AC 96 ms
6,820 KB
testcase_11 AC 110 ms
6,820 KB
testcase_12 AC 146 ms
6,816 KB
testcase_13 AC 95 ms
6,816 KB
testcase_14 AC 82 ms
6,820 KB
testcase_15 AC 208 ms
6,820 KB
testcase_16 AC 214 ms
6,816 KB
testcase_17 AC 252 ms
6,816 KB
testcase_18 AC 251 ms
6,820 KB
testcase_19 AC 252 ms
6,816 KB
testcase_20 AC 252 ms
6,820 KB
testcase_21 AC 255 ms
6,816 KB
testcase_22 AC 255 ms
6,820 KB
testcase_23 AC 251 ms
6,816 KB
testcase_24 AC 252 ms
6,816 KB
testcase_25 AC 254 ms
6,816 KB
testcase_26 AC 250 ms
6,816 KB
testcase_27 AC 225 ms
6,816 KB
testcase_28 AC 242 ms
6,824 KB
testcase_29 AC 211 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int N,M;
int A[1<<17];
int main()
{
	cin>>N>>M;
	long ans=0;
	for(int i=1;i<=M;i++)
	{
		cin>>A[i];
		ans+=(long)A[i]*A[i];
	}
	int Q;cin>>Q;
	for(;Q--;)
	{
		int c,k,d;cin>>c>>k>>d;
		ans-=(long)A[c]*A[c];
		ans-=(long)A[d]*A[d];
		A[c]-=k;
		A[d]+=k;
		ans+=(long)A[c]*A[c];
		ans+=(long)A[d]*A[d];
		cout<<ans<<"\n";
	}
}
0