結果

問題 No.275 中央値を求めよ
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-18 07:22:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 137 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 53,396 KB
最終ジャッジ日時 2024-09-19 00:09:55
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,756 KB
testcase_01 AC 33 ms
52,284 KB
testcase_02 AC 34 ms
52,852 KB
testcase_03 AC 35 ms
51,756 KB
testcase_04 AC 33 ms
53,396 KB
testcase_05 AC 37 ms
51,952 KB
testcase_06 AC 37 ms
52,444 KB
testcase_07 AC 37 ms
51,812 KB
testcase_08 AC 35 ms
52,760 KB
testcase_09 AC 32 ms
53,028 KB
testcase_10 AC 31 ms
52,992 KB
testcase_11 AC 33 ms
52,228 KB
testcase_12 AC 37 ms
52,400 KB
testcase_13 AC 39 ms
52,144 KB
testcase_14 AC 35 ms
53,172 KB
testcase_15 AC 34 ms
52,644 KB
testcase_16 AC 33 ms
53,340 KB
testcase_17 AC 34 ms
52,748 KB
testcase_18 AC 33 ms
52,416 KB
testcase_19 AC 33 ms
51,892 KB
testcase_20 AC 32 ms
52,332 KB
testcase_21 AC 32 ms
52,552 KB
testcase_22 AC 34 ms
52,276 KB
testcase_23 AC 36 ms
51,620 KB
testcase_24 AC 36 ms
53,328 KB
testcase_25 AC 34 ms
52,500 KB
testcase_26 AC 35 ms
52,472 KB
testcase_27 AC 33 ms
53,128 KB
testcase_28 AC 35 ms
51,880 KB
testcase_29 AC 32 ms
52,276 KB
testcase_30 AC 33 ms
52,156 KB
testcase_31 AC 33 ms
53,020 KB
testcase_32 AC 33 ms
52,428 KB
testcase_33 AC 33 ms
52,272 KB
testcase_34 AC 33 ms
53,008 KB
testcase_35 AC 34 ms
52,648 KB
testcase_36 AC 33 ms
53,320 KB
testcase_37 AC 33 ms
52,432 KB
testcase_38 AC 34 ms
52,204 KB
testcase_39 AC 33 ms
53,056 KB
testcase_40 AC 34 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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