結果

問題 No.609 Noelちゃんと星々
ユーザー 👑 CleyL
提出日時 2020-03-18 00:25:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 23:29:13
合計ジャッジ時間 2,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
	int n;cin>>n;
	vector<long long> A(n);
	for(int i = 0; n > i; i++)cin>>A[i];
	sort(A.begin(),A.end());
	long long ans = 0;
	for(int i = 0; n > i; i++){
		ans += abs(A[i]-A[n/2]);
	}
	cout << ans << endl;
}
0