結果

問題 No.275 中央値を求めよ
ユーザー mlihua09mlihua09
提出日時 2020-08-23 00:31:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 94 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-10-15 12:29:21
合計ジャッジ時間 7,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #



_ = input()



import statistics

print(statistics.median(list(map(int, input().split()))))
0