結果

問題 No.275 中央値を求めよ
ユーザー gmgmgmgmgmg8
提出日時 2018-10-23 19:11:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 274 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-19 04:34:54
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 20 RE * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = list(map(int,input().split()))
for i in range(n-1):
    for j in range(n-i-1):
        if l[j] > l[j+1]:
            tem = l[j]
            l[j] = l[j+1]
            l[j+1] = tem
if n % 2 == 0:
    print((l[n//2-1]+l[n//2])/2)
else:
    print(l[n-1//2])
0