結果

問題 No.275 中央値を求めよ
ユーザー cww
提出日時 2016-05-17 21:19:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 565 bytes
コンパイル時間 1,588 ms
コンパイル使用メモリ 171,020 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 23:49:39
合計ジャッジ時間 2,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define LL long long
#define ULL unsigned long long
#define REP(i, n) for(int i=0; i<(n); i++)
#define REP2(i, x, n) for(int i=x; i<(n); i++)
#define SORT(n) sort((n).begin(), (n).end(), greater<int>())
using namespace std;
int main(){
	
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int n;
	cin >> n;
	
	vector<int> vc(n);
	for(auto &i : vc){
		cin >> i;
	}
	
	sort(vc.begin(),vc.end());
	
	double sum =  (n-1) / 2.0;

	if(n%2 == 0){
		cout << ( vc[sum] + vc[sum + 1] )/ 2.0 <<  endl;		
	}else{
		cout << vc[sum] << endl;
	}
	
	return 0;
}
0