結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー anonymouslyanonymously
提出日時 2023-05-19 21:37:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 625 bytes
コンパイル時間 1,864 ms
コンパイル使用メモリ 169,428 KB
実行使用メモリ 15,584 KB
最終ジャッジ日時 2024-12-18 02:24:37
合計ジャッジ時間 61,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,628 KB
testcase_01 AC 2 ms
9,756 KB
testcase_02 AC 5 ms
10,064 KB
testcase_03 AC 3 ms
10,624 KB
testcase_04 AC 5 ms
9,856 KB
testcase_05 AC 6 ms
9,868 KB
testcase_06 AC 5 ms
10,624 KB
testcase_07 TLE -
testcase_08 AC 334 ms
10,624 KB
testcase_09 TLE -
testcase_10 AC 402 ms
10,624 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,689 ms
10,624 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 216 ms
15,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

//ソウルパワー
long soulPower(size_t m,vector<long> a){
	long result=0;
	for(size_t i=0;i<m;i++){
		result+=(a[i]*a[i]);
	}
	return result;
}

int main(){
	//最初, i=1,2,…,M それぞれに対して, 色 i の魂が N 個中 Ai個ある.
	unsigned long n;
	size_t m;
	cin>>n>>m;
	vector<long> a(m);
	for(size_t i=0;i<m;i++){
		cin>>a.at(i);
	}
	size_t q;
	cin>>q;
	while(q--){
		//色Cである魂のうち, K個は本当は色Dである.
		size_t c,d;
		long k;
		cin>>c>>k>>d;
		a.at(c-1)-=k;
		a.at(d-1)+=k;
		cout<<soulPower(m,a)<<endl;
	}
	return EXIT_SUCCESS;	
}
0