結果

問題 No.275 中央値を求めよ
ユーザー takaaaa6takaaaa6
提出日時 2022-03-05 00:20:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 262 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 8,388 KB
最終ジャッジ日時 2023-09-26 04:10:43
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,892 KB
testcase_01 AC 16 ms
7,844 KB
testcase_02 AC 19 ms
7,844 KB
testcase_03 AC 15 ms
7,844 KB
testcase_04 AC 15 ms
7,788 KB
testcase_05 AC 16 ms
7,840 KB
testcase_06 AC 18 ms
7,932 KB
testcase_07 AC 94 ms
7,800 KB
testcase_08 AC 23 ms
7,936 KB
testcase_09 AC 26 ms
7,800 KB
testcase_10 AC 26 ms
7,768 KB
testcase_11 AC 16 ms
7,788 KB
testcase_12 AC 16 ms
7,788 KB
testcase_13 AC 15 ms
7,892 KB
testcase_14 AC 16 ms
7,768 KB
testcase_15 AC 262 ms
7,988 KB
testcase_16 AC 185 ms
8,276 KB
testcase_17 AC 177 ms
8,388 KB
testcase_18 AC 48 ms
7,936 KB
testcase_19 AC 117 ms
7,932 KB
testcase_20 AC 140 ms
7,780 KB
testcase_21 AC 62 ms
7,844 KB
testcase_22 AC 180 ms
7,780 KB
testcase_23 AC 72 ms
7,892 KB
testcase_24 AC 35 ms
7,892 KB
testcase_25 AC 215 ms
7,928 KB
testcase_26 AC 167 ms
7,708 KB
testcase_27 AC 138 ms
7,844 KB
testcase_28 AC 18 ms
7,800 KB
testcase_29 AC 59 ms
7,776 KB
testcase_30 AC 18 ms
7,928 KB
testcase_31 AC 170 ms
7,844 KB
testcase_32 AC 25 ms
7,812 KB
testcase_33 AC 167 ms
7,796 KB
testcase_34 AC 18 ms
7,848 KB
testcase_35 AC 131 ms
7,764 KB
testcase_36 AC 63 ms
7,844 KB
testcase_37 AC 25 ms
7,772 KB
testcase_38 AC 31 ms
7,776 KB
testcase_39 AC 39 ms
7,796 KB
testcase_40 AC 249 ms
8,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[0]*N
A=list(map(int,input().split()))
c=0

for j in range(len(A)):
    for i in range(0,len(A)-1):
        if A[i] > A[i+1]:
            tmp=A[i+1]
            A[i+1]=A[i]
            A[i]=tmp

if len(A)%2==0:
    aa=A[(len(A)//2)-1]+A[(len(A)//2)]
    c=aa/2

else:
    c=A[len(A)//2]

print(c)
0