結果

問題 No.275 中央値を求めよ
ユーザー 猫吉
提出日時 2018-09-17 11:58:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 229 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-18 07:37:44
合計ジャッジ時間 2,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 28 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
number = list(map(int,input().split()))
number.sort()
result = 0
i = 0
if a % 2 != 0:
    i = int(a/2)
    result = number[i]
else:
    result = int(int(number[int(a/2 - 1)] + number[int(a/2)]) / 2)
print(result)
0