結果

問題 No.275 中央値を求めよ
ユーザー KKT89
提出日時 2019-12-17 02:13:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 362 bytes
コンパイル時間 1,182 ms
コンパイル使用メモリ 83,476 KB
最終ジャッジ日時 2025-01-08 11:50:11
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
using namespace std;
typedef long long int ll;

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());
	double ans=0;
	if(n%2==0){
		ans=(a[n/2]+a[n/2-1])/2.0;
	}
	else{
		ans=a[n/2];
	}
	cout << ans << endl;
}
0