結果
問題 | No.275 中央値を求めよ |
ユーザー |
|
提出日時 | 2017-09-03 10:55:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 475 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 170,764 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 00:37:59 |
合計ジャッジ時間 | 2,631 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
#include <bits/stdc++.h>#define FOR(i,a,b) for(int i = (a); i < (b); ++i)#define REP(i,n) FOR(i,0,n)#define SZ(n) (int)(n).size()#define ALL(n) (n).begin(), (n).end()using namespace std;typedef long long LL;typedef vector<int> VI;int main() {int n;cin >> n;VI a(n);REP(i, n) cin >> a[i];sort(ALL(a));double med = 0;if (SZ(a) % 2 == 0) med = (double)(a[(n - 1) / 2] + a[(n - 1) / 2 + 1]) / 2;else med = a[SZ(a) / 2];cout << med << endl;return 0;}