結果
問題 | No.275 中央値を求めよ |
ユーザー |
|
提出日時 | 2020-07-11 07:33:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 361 bytes |
コンパイル時間 | 940 ms |
コンパイル使用メモリ | 76,244 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 11:09:22 |
合計ジャッジ時間 | 2,281 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>using namespace std;int main() {int n, a;cin >> n;vector<int> v;for (int i = 0; i < n; i++) {cin >> a;v.push_back(a);}sort(v.begin(), v.end());if ((n % 2)==0){cout << (v[(n/2)-1] + v[(n/2)]) /2.0 << endl;} else {cout << v[n / 2] << endl;}return 0;}