結果

問題 No.275 中央値を求めよ
ユーザー kai10920
提出日時 2023-01-23 18:00:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 322 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 77,556 KB
最終ジャッジ日時 2025-02-10 06:29:29
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n;
    std::cin>>n;
    std::vector<int> a(n);
    for (int& element : a) {
        std::cin>>element;
    }
    std::sort(a.begin(),a.end());
    if(n%2==0){
       std::cout<<(a[n/2]+a[n/2-1])/2.0;
    }else{
        std::cout<<a[n/2];
    }
}
0