結果
| 問題 |
No.275 中央値を求めよ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-01-21 22:50:01 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 412 bytes |
| コンパイル時間 | 623 ms |
| コンパイル使用メモリ | 64,736 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-25 00:48:53 |
| 合計ジャッジ時間 | 1,746 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 38 |
ソースコード
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
static const int N = 1000;
int main(void){
int n;
int a[N];
cin >> n;
vector<int> V(n);
for(int i=0;i<n;i++) cin >> V[i];
sort(V.begin(),V.end());
if(n%2 != 0){
cout << V[(n/2)] << endl;
}else{
// cout << "n/2:" << V[n/2-1] << "n/2+1:" << V[n/2] << endl;
cout << (V[n/2-1] + V[n/2])/2.0 << endl;
}
}