結果

問題 No.275 中央値を求めよ
ユーザー papinianuspapinianus
提出日時 2016-05-23 09:53:11
言語 PHP
(8.3.4)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 237 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 30,360 KB
実行使用メモリ 31,164 KB
最終ジャッジ日時 2024-06-24 23:50:21
合計ジャッジ時間 3,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,076 KB
testcase_01 AC 44 ms
30,848 KB
testcase_02 AC 43 ms
30,992 KB
testcase_03 AC 43 ms
31,024 KB
testcase_04 AC 43 ms
31,108 KB
testcase_05 AC 42 ms
30,964 KB
testcase_06 AC 42 ms
31,120 KB
testcase_07 AC 46 ms
31,164 KB
testcase_08 AC 48 ms
31,048 KB
testcase_09 AC 46 ms
31,036 KB
testcase_10 AC 43 ms
30,768 KB
testcase_11 AC 43 ms
30,992 KB
testcase_12 AC 46 ms
31,016 KB
testcase_13 AC 46 ms
30,800 KB
testcase_14 AC 44 ms
30,808 KB
testcase_15 AC 43 ms
31,052 KB
testcase_16 AC 45 ms
30,944 KB
testcase_17 AC 46 ms
30,912 KB
testcase_18 AC 47 ms
30,876 KB
testcase_19 AC 45 ms
31,072 KB
testcase_20 AC 44 ms
31,116 KB
testcase_21 AC 44 ms
30,804 KB
testcase_22 AC 43 ms
31,108 KB
testcase_23 AC 44 ms
31,096 KB
testcase_24 AC 43 ms
30,900 KB
testcase_25 AC 44 ms
30,916 KB
testcase_26 AC 44 ms
30,976 KB
testcase_27 AC 46 ms
30,840 KB
testcase_28 AC 43 ms
30,916 KB
testcase_29 AC 44 ms
30,960 KB
testcase_30 AC 47 ms
30,852 KB
testcase_31 AC 46 ms
30,928 KB
testcase_32 AC 44 ms
31,096 KB
testcase_33 AC 43 ms
31,060 KB
testcase_34 AC 45 ms
31,020 KB
testcase_35 AC 44 ms
30,912 KB
testcase_36 AC 44 ms
30,968 KB
testcase_37 AC 45 ms
31,048 KB
testcase_38 AC 46 ms
30,732 KB
testcase_39 AC 45 ms
30,924 KB
testcase_40 AC 46 ms
30,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$floorn = floor($n/2);
$nums = explode(' ', trim(fgets(STDIN)));
sort($nums);

if(($n / 2) != $floorn){
    echo $nums[$floorn].PHP_EOL;
} else {
    echo (($nums[$floorn] + $nums[$floorn-1]) /2).PHP_EOL;
}
0