結果

問題 No.275 中央値を求めよ
ユーザー gmgmgmgmgmg8gmgmgmgmgmg8
提出日時 2018-10-23 19:11:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 274 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-29 21:05:24
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 RE -
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 71 ms
10,624 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 35 ms
10,752 KB
testcase_11 RE -
testcase_12 AC 27 ms
10,624 KB
testcase_13 RE -
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 183 ms
10,624 KB
testcase_16 AC 100 ms
10,752 KB
testcase_17 AC 99 ms
10,752 KB
testcase_18 AC 47 ms
10,752 KB
testcase_19 RE -
testcase_20 AC 98 ms
10,752 KB
testcase_21 AC 54 ms
10,624 KB
testcase_22 AC 120 ms
10,752 KB
testcase_23 RE -
testcase_24 AC 38 ms
10,624 KB
testcase_25 AC 146 ms
10,752 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 118 ms
10,752 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 33 ms
10,752 KB
testcase_38 AC 38 ms
10,752 KB
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

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