結果

問題 No.275 中央値を求めよ
ユーザー edash
提出日時 2018-08-16 15:56:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-02 08:50:10
合計ジャッジ時間 2,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 20 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

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