結果

問題 No.275 中央値を求めよ
ユーザー arrows
提出日時 2017-01-21 01:59:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 399 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 00:14:56
合計ジャッジ時間 1,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdio>

using namespace std;

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());

    if (N & 1) {
        cout << a[N / 2] << endl;
    } else {
        printf("%.15f\n", (a[N / 2 - 1] + a[N / 2]) / 2.0);
    }
    return 0;
}
0