結果
問題 | No.275 中央値を求めよ |
ユーザー |
|
提出日時 | 2017-11-03 19:10:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 387 bytes |
コンパイル時間 | 1,571 ms |
コンパイル使用メモリ | 172,908 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 00:43:10 |
合計ジャッジ時間 | 2,719 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
#include<bits/stdc++.h>#define rep(i,a,n) for (int i = a;i < n;i++)#define per(i,n,a) for (int i = n-1;i >= a;i--)using namespace std;int main() {int n; cin >> n;vector<int> a(n);rep(i,0,n){cin >> a[i];}sort(a.begin(),a.end());if(n%2 == 1) {cout << a[n/2] << endl;}else{cout << (a[n/2-1] + a[n/2]) / 2.0 << endl;}}