結果

問題 No.275 中央値を求めよ
ユーザー tazakkytazakky
提出日時 2017-09-12 14:48:31
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 1,343 ms
コンパイル使用メモリ 30,620 KB
実行使用メモリ 31,264 KB
最終ジャッジ日時 2024-11-07 17:21:32
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,700 KB
testcase_01 AC 39 ms
31,012 KB
testcase_02 AC 55 ms
30,944 KB
testcase_03 AC 39 ms
31,036 KB
testcase_04 AC 39 ms
30,900 KB
testcase_05 AC 39 ms
31,056 KB
testcase_06 AC 38 ms
31,128 KB
testcase_07 AC 39 ms
30,964 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
30,920 KB
testcase_11 WA -
testcase_12 AC 41 ms
30,952 KB
testcase_13 AC 40 ms
30,708 KB
testcase_14 AC 40 ms
30,980 KB
testcase_15 AC 40 ms
31,012 KB
testcase_16 AC 40 ms
30,824 KB
testcase_17 AC 40 ms
31,164 KB
testcase_18 AC 41 ms
30,856 KB
testcase_19 WA -
testcase_20 AC 41 ms
30,696 KB
testcase_21 AC 39 ms
31,044 KB
testcase_22 AC 41 ms
31,064 KB
testcase_23 WA -
testcase_24 AC 41 ms
30,776 KB
testcase_25 AC 40 ms
30,884 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
30,948 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 40 ms
30,688 KB
testcase_38 AC 38 ms
31,168 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $n = trim(fgets(STDIN));
    $input = explode(" ",trim(fgets(STDIN)));
    //print_r($input);
    sort($input);
    if($n % 2 == 1){
        $c = floor($n % 2);
        echo $input[$c];
    }else{
        $c = $n / 2;
        echo round((($input[$c - 1] + $input[$c]) / 2), 1);
    }

?>
0