結果
問題 |
No.275 中央値を求めよ
|
ユーザー |
![]() |
提出日時 | 2015-09-18 22:17:56 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 380 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 64,636 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 06:57:00 |
合計ジャッジ時間 | 1,460 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 22 WA * 16 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin >> n; vector<int> v; for(int i = 0; i < n; i++) { int j; cin >> j; v.push_back(j); } sort(v.begin(), v.end()); float mid; if(n % 1 == 0) { mid = (float)v[n/2]; } else { mid = ((float)v[n/2] + v[n/2 +-1])/2; } cout << mid; }