結果

問題 No.275 中央値を求めよ
ユーザー hkawa117hkawa117
提出日時 2015-09-10 23:04:29
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 151 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-07-19 05:14:13
合計ジャッジ時間 1,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,888 KB
testcase_01 AC 9 ms
6,144 KB
testcase_02 AC 9 ms
6,016 KB
testcase_03 RE -
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 10 ms
6,144 KB
testcase_06 AC 10 ms
6,144 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 10 ms
6,144 KB
testcase_11 RE -
testcase_12 AC 9 ms
6,016 KB
testcase_13 RE -
testcase_14 AC 10 ms
6,144 KB
testcase_15 AC 10 ms
6,144 KB
testcase_16 AC 10 ms
6,272 KB
testcase_17 AC 9 ms
6,144 KB
testcase_18 AC 9 ms
6,144 KB
testcase_19 RE -
testcase_20 AC 9 ms
6,144 KB
testcase_21 AC 10 ms
6,272 KB
testcase_22 AC 10 ms
6,272 KB
testcase_23 RE -
testcase_24 AC 10 ms
6,272 KB
testcase_25 AC 9 ms
6,144 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 9 ms
6,272 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 9 ms
6,016 KB
testcase_38 AC 9 ms
6,144 KB
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
A = sorted(map(float, raw_input().split()))

if len(A) % 2 == 0:
    print (A[N/2-1] + A[N/2]) / 2.0
else:
    print A[(N-1)/2.0]
0