結果
問題 |
No.275 中央値を求めよ
|
ユーザー |
![]() |
提出日時 | 2016-02-21 16:09:49 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 433 bytes |
コンパイル時間 | 692 ms |
コンパイル使用メモリ | 76,716 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 12:34:23 |
合計ジャッジ時間 | 1,803 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 21 WA * 17 |
ソースコード
#define _USE_MATH_DEFINES #include<stdio.h> #include<string> #include<iostream> #include<cctype> #include<cstdio> #include<vector> #include <algorithm> #include<math.h> #include<set> #include<map> #include<iomanip> using namespace std; int main(){ int n;int t[10005]={}; cin>>n; for(int i=0;i<n;i++) cin>>t[i]; sort(t,t+n); if(n%2)cout<<t[n/2]; else{ double a=0; a+=t[n/2]+t[n/2+1]; a/=2; cout<<a;} return 0; }