結果

問題 No.275 中央値を求めよ
ユーザー SATSUKI-UPDATESATSUKI-UPDATE
提出日時 2022-05-17 16:54:57
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 892 bytes
コンパイル時間 4,612 ms
コンパイル使用メモリ 30,800 KB
実行使用メモリ 31,516 KB
最終ジャッジ日時 2024-09-15 11:40:43
合計ジャッジ時間 7,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,188 KB
testcase_01 AC 41 ms
30,996 KB
testcase_02 AC 42 ms
31,124 KB
testcase_03 WA -
testcase_04 AC 40 ms
31,040 KB
testcase_05 AC 40 ms
30,984 KB
testcase_06 AC 41 ms
31,236 KB
testcase_07 AC 56 ms
31,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 43 ms
31,036 KB
testcase_11 WA -
testcase_12 AC 41 ms
31,104 KB
testcase_13 WA -
testcase_14 AC 40 ms
31,052 KB
testcase_15 AC 87 ms
31,448 KB
testcase_16 AC 76 ms
31,488 KB
testcase_17 AC 77 ms
31,280 KB
testcase_18 AC 48 ms
31,284 KB
testcase_19 WA -
testcase_20 AC 66 ms
31,380 KB
testcase_21 AC 50 ms
31,120 KB
testcase_22 AC 71 ms
30,980 KB
testcase_23 WA -
testcase_24 AC 45 ms
31,032 KB
testcase_25 AC 79 ms
31,204 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 50 ms
31,384 KB
testcase_30 AC 41 ms
31,340 KB
testcase_31 AC 70 ms
31,052 KB
testcase_32 AC 42 ms
31,464 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 43 ms
30,952 KB
testcase_38 AC 45 ms
31,008 KB
testcase_39 WA -
testcase_40 AC 85 ms
31,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
function getStandardInput()
{
  $array = array();
  while (true) {
    $stdin = fgets(STDIN);
    if ($stdin == "") {
      break;
    }
    $array[] = rtrim($stdin);
  }
  return $array;
}

function splitBySpace($str)
{
  return explode(' ', $str);
}

function bubbleSort($array)
{
    $cnt = count($array);

    for($i=0;$i<$cnt-1;$i++){
        for($j=$i+1;$j<$cnt;$j++){
            if($array[$i]>$array[$j]){
                $tmp = $array[$i];
                $array[$i] = $array[$j];
                $array[$j] = $tmp;
            }
        }
    }
    return $array;
}

$stdIn = getStandardInput();
$time = $stdIn[0];
$input = splitBySpace($stdIn[1]);
$input = bubbleSort($input);
$result = 0;
$arrayCnt = count($input);
if($arrayCnt % 2 == 0){
    $result =($input[($arrayCnt/2)-1] + $input[($arrayCnt/2)]) / 2;
} else {
    $result = $input[$arrayCnt/2 + 0.5];
}
echo($result);
0