結果

問題 No.275 中央値を求めよ
ユーザー ransewhale
提出日時 2016-01-19 21:39:04
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 350 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 37,452 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 23:40:32
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d",&a[i]);
      |         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<algorithm>

using namespace std;

int main(void){
    int n,i,a[1000],ans;
    scanf("%d",&n);
    for(i=0; i<n; i++){
        scanf("%d",&a[i]);
    }
    sort(a,a+n);
    if(n%2==1){
        printf("%d\n",a[n/2]);
    }else{
        ans = a[(n/2)-1]+a[n/2];
        printf("%lf\n",(double)(ans)/2);
    }
    return 0;
}
0