結果

問題 No.275 中央値を求めよ
ユーザー pypypymipypypymi
提出日時 2022-02-21 15:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 146 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-29 20:01:44
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,552 KB
testcase_01 AC 31 ms
52,424 KB
testcase_02 AC 31 ms
53,432 KB
testcase_03 AC 31 ms
51,940 KB
testcase_04 AC 30 ms
52,672 KB
testcase_05 AC 31 ms
52,940 KB
testcase_06 AC 30 ms
53,556 KB
testcase_07 AC 31 ms
51,812 KB
testcase_08 AC 32 ms
52,200 KB
testcase_09 AC 32 ms
51,900 KB
testcase_10 AC 32 ms
52,204 KB
testcase_11 AC 31 ms
52,428 KB
testcase_12 AC 34 ms
51,568 KB
testcase_13 AC 31 ms
52,768 KB
testcase_14 AC 30 ms
52,096 KB
testcase_15 AC 33 ms
52,860 KB
testcase_16 AC 31 ms
52,640 KB
testcase_17 AC 31 ms
53,684 KB
testcase_18 AC 32 ms
52,008 KB
testcase_19 AC 32 ms
52,032 KB
testcase_20 AC 32 ms
53,240 KB
testcase_21 AC 35 ms
52,212 KB
testcase_22 AC 35 ms
52,128 KB
testcase_23 AC 33 ms
52,612 KB
testcase_24 AC 33 ms
52,216 KB
testcase_25 AC 32 ms
52,220 KB
testcase_26 AC 34 ms
54,212 KB
testcase_27 AC 33 ms
51,944 KB
testcase_28 AC 31 ms
53,288 KB
testcase_29 AC 32 ms
52,820 KB
testcase_30 AC 33 ms
53,168 KB
testcase_31 AC 33 ms
52,812 KB
testcase_32 AC 34 ms
53,148 KB
testcase_33 AC 33 ms
52,800 KB
testcase_34 AC 31 ms
52,380 KB
testcase_35 AC 31 ms
53,444 KB
testcase_36 AC 31 ms
52,120 KB
testcase_37 AC 36 ms
52,452 KB
testcase_38 AC 35 ms
52,552 KB
testcase_39 AC 36 ms
52,612 KB
testcase_40 AC 36 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
an = list(sorted(map(int,input().split())))
print(an[len(an)//2]) if len(an)%2==1 else print((an[len(an)//2]+an[len(an)//2-1])/2)
0