結果

問題 No.275 中央値を求めよ
ユーザー focusfocus
提出日時 2018-01-22 01:16:33
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 65,308 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 00:49:05
合計ジャッジ時間 1,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
int main(){
    int N;
    float x;
    vector<float> a;
    cin >> N;
    for(int i=0;i<N;i++){
        cin >> x;
        a.push_back(x);
    }
    sort(a.begin(),a.end());
    if(!(N%2)){
        printf("%.1f",(a[N/2]+a[N/2-1])/2);
    }
    else{
        printf("%.1f",a[N/2]);
    }
    return 0;
}
0