結果
問題 | No.609 Noelちゃんと星々 |
ユーザー |
![]() |
提出日時 | 2018-01-04 22:34:34 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 1,405 bytes |
コンパイル時間 | 1,977 ms |
コンパイル使用メモリ | 171,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 03:54:35 |
合計ジャッジ時間 | 3,371 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define MOD 1000000007#define INF 2000000000#define MAX 100001//#define int ll#define ll long long#define ld long double#define vi vector<int>#define pa pair<int, int>#define INIT ios::sync_with_stdio(false);cin.tie(0);#define VAR(type, ...)type __VA_ARGS__;MACRO_VAR_Scan(__VA_ARGS__);template<typename T> void MACRO_VAR_Scan(T& t) { cin >> t; }template<typename First, typename...Rest>void MACRO_VAR_Scan(First& first, Rest&...rest) { cin >> first; MACRO_VAR_Scan(rest...); }#define VEC(type, c, n) vector<type> c(n);for(auto& i:c)cin>>i;#define MAT(type, c, m, n) vector<vector<type>> c(m, vector<type>(n));for(auto& r:c)for(auto& i:r)cin>>i;#define BR cout << "\n";#define SP cout << " ";#define OUT(d) cout<<(d);#define OUTL(d) cout<<(d)<<endl;#define YES OUTL("YES")#define Yes OUTL("Yes")#define NO OUTL("NO")#define No OUTL("No")#define RET return 0;#define REP(i, n) for(int i=0;i<(n);i++)#define RREP(i, n) for(int i=n-1;i>=0;--i)#define FOR(i, m, n) for(int i = m;i < n; i++)#define RFOR(i, a, b) for(int i=(a)-1;i>=(b);--i)#define ALL(a) (a).begin(),(a).end()#define IFY(con) if((con)){YES;}else{NO;}#define IFy(con) if((con)){Yes;}else{No;}signed main(){ INITVAR(int, n);VEC(int, y, n);sort(ALL(y));ll c = y[n/2];ll ans = 0;REP(i, n) ans += abs(c - y[i]);OUTL(ans);RET;}