結果

問題 No.275 中央値を求めよ
ユーザー roiti46roiti46
提出日時 2015-09-04 22:29:53
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-24 23:08:49
合計ジャッジ時間 1,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(raw_input())
a = sorted(map(int, raw_input().split()))
print (a[n/2] + a[(n - 1) / 2]) / 2.0
0