結果

問題 No.275 中央値を求めよ
ユーザー convexineqconvexineq
提出日時 2020-12-26 17:23:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-09-24 20:05:38
合計ジャッジ時間 2,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,776 KB
testcase_01 AC 37 ms
53,416 KB
testcase_02 AC 36 ms
51,700 KB
testcase_03 AC 35 ms
52,204 KB
testcase_04 AC 35 ms
52,112 KB
testcase_05 AC 35 ms
52,828 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 35 ms
52,148 KB
testcase_08 AC 36 ms
52,400 KB
testcase_09 AC 36 ms
52,504 KB
testcase_10 AC 36 ms
54,032 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 35 ms
53,020 KB
testcase_13 AC 36 ms
51,984 KB
testcase_14 AC 34 ms
52,576 KB
testcase_15 AC 35 ms
53,692 KB
testcase_16 AC 36 ms
53,420 KB
testcase_17 AC 35 ms
53,024 KB
testcase_18 AC 35 ms
52,396 KB
testcase_19 AC 36 ms
52,344 KB
testcase_20 AC 36 ms
52,452 KB
testcase_21 AC 36 ms
52,000 KB
testcase_22 AC 36 ms
53,568 KB
testcase_23 AC 34 ms
52,492 KB
testcase_24 AC 35 ms
53,028 KB
testcase_25 AC 36 ms
52,952 KB
testcase_26 AC 34 ms
52,772 KB
testcase_27 AC 35 ms
53,104 KB
testcase_28 AC 34 ms
51,836 KB
testcase_29 AC 35 ms
53,180 KB
testcase_30 AC 35 ms
52,560 KB
testcase_31 AC 36 ms
53,612 KB
testcase_32 AC 35 ms
52,864 KB
testcase_33 AC 35 ms
53,648 KB
testcase_34 AC 35 ms
52,792 KB
testcase_35 AC 35 ms
52,284 KB
testcase_36 AC 36 ms
52,316 KB
testcase_37 AC 35 ms
52,316 KB
testcase_38 AC 36 ms
52,296 KB
testcase_39 AC 35 ms
52,600 KB
testcase_40 AC 36 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
a.sort()
print(a[n//2] if n%2 else (a[n//2]+a[n//2-1])/2)
0