結果

問題 No.275 中央値を求めよ
ユーザー ayaaya
提出日時 2019-07-25 13:53:47
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 688 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,440 KB
最終ジャッジ日時 2024-07-02 06:01:22
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,304 KB
testcase_01 AC 41 ms
30,908 KB
testcase_02 AC 42 ms
31,368 KB
testcase_03 AC 42 ms
31,248 KB
testcase_04 AC 43 ms
30,944 KB
testcase_05 AC 42 ms
31,080 KB
testcase_06 AC 43 ms
30,876 KB
testcase_07 AC 41 ms
31,356 KB
testcase_08 AC 42 ms
31,392 KB
testcase_09 AC 41 ms
30,912 KB
testcase_10 AC 42 ms
31,136 KB
testcase_11 AC 41 ms
31,144 KB
testcase_12 AC 42 ms
31,168 KB
testcase_13 AC 42 ms
31,240 KB
testcase_14 AC 42 ms
31,228 KB
testcase_15 AC 42 ms
31,284 KB
testcase_16 AC 42 ms
30,892 KB
testcase_17 AC 43 ms
31,352 KB
testcase_18 AC 42 ms
31,016 KB
testcase_19 AC 41 ms
31,012 KB
testcase_20 AC 42 ms
31,440 KB
testcase_21 AC 42 ms
31,132 KB
testcase_22 AC 42 ms
31,020 KB
testcase_23 AC 42 ms
31,204 KB
testcase_24 AC 42 ms
31,184 KB
testcase_25 AC 42 ms
31,140 KB
testcase_26 AC 42 ms
30,876 KB
testcase_27 AC 42 ms
31,212 KB
testcase_28 AC 41 ms
30,848 KB
testcase_29 AC 42 ms
31,332 KB
testcase_30 AC 42 ms
31,212 KB
testcase_31 AC 41 ms
31,008 KB
testcase_32 AC 41 ms
31,324 KB
testcase_33 AC 42 ms
31,116 KB
testcase_34 AC 41 ms
31,204 KB
testcase_35 AC 43 ms
31,072 KB
testcase_36 AC 42 ms
31,364 KB
testcase_37 AC 42 ms
31,148 KB
testcase_38 AC 42 ms
31,268 KB
testcase_39 AC 43 ms
31,380 KB
testcase_40 AC 42 ms
30,988 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*No.275 中央値を求めよ
  N 個の整数Aiが与えられるので、その中央値(メジアン)を求めてください。

中央値(メジアン)とは、小さい順に並べたとき中央に位置する値。
データが偶数個の場合は、中央に近い2つの値の算術平均(いわゆる普通の平均)をとる。
(Wikipediaから引用)
中央値: Wikipedia

小数第一位まで求めてください。
(数値が正しければ、0の小数桁が含まれてても良い)
 */
$N = trim(fgets(STDIN));
$A =explode(" ",trim(fgets(STDIN)));
sort($A);
if($N%2!==0){
echo $A[ceil($N/2)-1];
}else{
  echo( ($A[$N/2]+$A[($N/2)-1])/2);
}


?>
0