結果
問題 | No.609 Noelちゃんと星々 |
ユーザー |
|
提出日時 | 2019-09-27 06:51:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 375 bytes |
コンパイル時間 | 850 ms |
コンパイル使用メモリ | 80,224 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 06:43:49 |
合計ジャッジ時間 | 3,463 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> using namespace std; typedef long long int ll; int main(){ int n; cin >> n; vector<int> a(n); for(int i=0;i<n;i++){ cin >> a[i]; } sort(a.begin(),a.end()); int m=a[n/2]; ll ans=0; for(int i=0;i<n;i++){ ans+=abs(a[i]-m); } cout << ans << endl; }