結果

問題 No.275 中央値を求めよ
ユーザー ant2357ant2357
提出日時 2016-03-26 23:15:12
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 30,364 KB
実行使用メモリ 31,216 KB
最終ジャッジ日時 2024-06-24 23:46:12
合計ジャッジ時間 5,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,896 KB
testcase_01 AC 42 ms
30,932 KB
testcase_02 AC 42 ms
31,036 KB
testcase_03 AC 43 ms
31,048 KB
testcase_04 AC 41 ms
30,812 KB
testcase_05 AC 44 ms
30,812 KB
testcase_06 AC 43 ms
31,108 KB
testcase_07 AC 42 ms
30,900 KB
testcase_08 AC 44 ms
31,048 KB
testcase_09 AC 42 ms
31,164 KB
testcase_10 AC 43 ms
31,036 KB
testcase_11 AC 45 ms
30,784 KB
testcase_12 AC 41 ms
31,024 KB
testcase_13 AC 42 ms
30,808 KB
testcase_14 AC 44 ms
30,996 KB
testcase_15 AC 42 ms
31,156 KB
testcase_16 AC 42 ms
30,888 KB
testcase_17 AC 42 ms
30,808 KB
testcase_18 AC 43 ms
30,696 KB
testcase_19 AC 43 ms
30,888 KB
testcase_20 AC 45 ms
31,036 KB
testcase_21 AC 44 ms
30,968 KB
testcase_22 AC 45 ms
30,804 KB
testcase_23 AC 43 ms
31,216 KB
testcase_24 AC 43 ms
30,700 KB
testcase_25 AC 44 ms
30,804 KB
testcase_26 AC 42 ms
31,088 KB
testcase_27 AC 42 ms
31,004 KB
testcase_28 AC 42 ms
30,976 KB
testcase_29 AC 43 ms
30,832 KB
testcase_30 AC 43 ms
30,800 KB
testcase_31 AC 43 ms
30,748 KB
testcase_32 AC 42 ms
30,900 KB
testcase_33 AC 42 ms
30,800 KB
testcase_34 AC 41 ms
31,056 KB
testcase_35 AC 42 ms
30,824 KB
testcase_36 AC 42 ms
30,808 KB
testcase_37 AC 42 ms
31,056 KB
testcase_38 AC 43 ms
31,052 KB
testcase_39 AC 43 ms
30,876 KB
testcase_40 AC 42 ms
31,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input = trim(fgets(STDIN));
$input2 = explode(" ", trim(fgets(STDIN)));

sort($input2);

if ($input % 2 == 0) {
	//偶数
	$ans = (($input2[(count($input2) / 2) - 1] + $input2[((count($input2) / 2))]) / 2);
} else {
	//奇数
	$ans = ($input2[floor(count($input2) / 2)]);
}

//出力
echo ($ans.PHP_EOL);
0