結果

問題 No.275 中央値を求めよ
ユーザー pekempeypekempey
提出日時 2015-09-04 22:22:18
言語 C++11
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 601 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 162,028 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 16:23:09
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a) for (int i = 0; i < (a); i++)
#define rep2(i, a, b) for (int i = (a); i < (b); i++)
#define repr(i, a) for (int i = (a) - 1; i >= 0; i--)
#define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--)
using namespace std;
typedef long long ll;

int main() {
	int n;
	cin >> n;
	vector<int> a(n);
	rep (i, n) cin >> a[i];
	sort(a.begin(), a.end());
	if (n % 2 == 0) {
		int ans = a[(n - 1) / 2] + a[n / 2];
		if (ans % 2 == 0) {
			cout << ans / 2 << endl;	
		} else {
			cout << ans / 2 << ".5" << endl;
		}
	} else {
		cout << a[n / 2] << endl;
	}
	return 0;
}
0