結果

問題 No.275 中央値を求めよ
ユーザー mahnamahna
提出日時 2020-05-16 22:43:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 358 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-22 21:33:25
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# coding: utf-8

ct = int(input().strip())
num = [int(x) for x in input().strip().split()]

num.sort()
last_key = len(num) - 1

if len(num) % 2 == 1:
    med_key = last_key / 2
    print(num[med_key])
else:
    med_key_before = last_key // 2
    med_key_after = med_key_before + 1
    
    ans = (num[med_key_before] + num[med_key_after]) / 2
    print(ans)
0