結果

問題 No.275 中央値を求めよ
ユーザー MrEMGration
提出日時 2019-03-24 15:41:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 95 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-10-02 09:59:58
合計ジャッジ時間 8,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

n=input()
num=list(map(int,input().split()))

print(statistics.median(num))
0