結果

問題 No.275 中央値を求めよ
ユーザー didymium860didymium860
提出日時 2024-02-10 11:27:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 164 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-09-28 17:05:59
合計ジャッジ時間 2,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,352 KB
testcase_01 AC 33 ms
52,804 KB
testcase_02 AC 30 ms
52,056 KB
testcase_03 AC 34 ms
52,508 KB
testcase_04 AC 33 ms
52,528 KB
testcase_05 AC 33 ms
53,296 KB
testcase_06 AC 32 ms
52,068 KB
testcase_07 AC 32 ms
52,664 KB
testcase_08 AC 30 ms
53,148 KB
testcase_09 AC 32 ms
53,232 KB
testcase_10 AC 31 ms
52,460 KB
testcase_11 AC 30 ms
53,740 KB
testcase_12 AC 30 ms
53,212 KB
testcase_13 AC 31 ms
52,580 KB
testcase_14 AC 35 ms
51,964 KB
testcase_15 AC 35 ms
53,892 KB
testcase_16 AC 34 ms
52,732 KB
testcase_17 AC 33 ms
53,312 KB
testcase_18 AC 31 ms
53,424 KB
testcase_19 AC 31 ms
52,272 KB
testcase_20 AC 32 ms
53,440 KB
testcase_21 AC 30 ms
52,704 KB
testcase_22 AC 32 ms
52,200 KB
testcase_23 AC 31 ms
53,632 KB
testcase_24 AC 30 ms
52,080 KB
testcase_25 AC 30 ms
52,504 KB
testcase_26 AC 33 ms
53,160 KB
testcase_27 AC 33 ms
52,608 KB
testcase_28 AC 31 ms
52,620 KB
testcase_29 AC 33 ms
52,216 KB
testcase_30 AC 32 ms
53,164 KB
testcase_31 AC 31 ms
52,884 KB
testcase_32 AC 30 ms
52,272 KB
testcase_33 AC 30 ms
53,232 KB
testcase_34 AC 30 ms
52,088 KB
testcase_35 AC 33 ms
52,424 KB
testcase_36 AC 33 ms
52,004 KB
testcase_37 AC 33 ms
53,584 KB
testcase_38 AC 31 ms
53,080 KB
testcase_39 AC 32 ms
53,344 KB
testcase_40 AC 31 ms
53,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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