結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)

int main(){
  int n;
  cin>>n;
  int a[n];
  rep(i,n) cin>>a[i];
  sort(a,a+n);
  if(n%2 ==1){
    cout<<a[n/2]<<endl;
    return 0;
  }
  else{
    cout<<((double)(a[n/2])+(double)(a[n/2-1]))/2<<endl;
  }
  return 0; 
}
0