結果

問題 No.275 中央値を求めよ
ユーザー pajannatpajannat
提出日時 2021-04-04 16:00:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-08 12:38:40
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
52,576 KB
testcase_04 AC 33 ms
52,352 KB
testcase_05 WA -
testcase_06 AC 32 ms
52,624 KB
testcase_07 AC 33 ms
52,216 KB
testcase_08 AC 32 ms
53,628 KB
testcase_09 AC 32 ms
52,316 KB
testcase_10 WA -
testcase_11 AC 33 ms
52,964 KB
testcase_12 AC 35 ms
52,616 KB
testcase_13 AC 31 ms
52,368 KB
testcase_14 AC 32 ms
51,904 KB
testcase_15 WA -
testcase_16 AC 35 ms
53,696 KB
testcase_17 AC 33 ms
53,612 KB
testcase_18 WA -
testcase_19 AC 36 ms
54,044 KB
testcase_20 AC 35 ms
52,520 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 32 ms
52,568 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 32 ms
52,880 KB
testcase_27 AC 33 ms
52,584 KB
testcase_28 AC 33 ms
53,196 KB
testcase_29 AC 32 ms
53,132 KB
testcase_30 AC 34 ms
53,044 KB
testcase_31 AC 33 ms
52,264 KB
testcase_32 AC 34 ms
52,804 KB
testcase_33 AC 33 ms
53,376 KB
testcase_34 AC 33 ms
52,152 KB
testcase_35 AC 32 ms
52,796 KB
testcase_36 AC 34 ms
52,640 KB
testcase_37 AC 33 ms
52,960 KB
testcase_38 AC 32 ms
51,828 KB
testcase_39 AC 34 ms
52,320 KB
testcase_40 AC 33 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
A = map(int,input().split())

# 昇順ソート
A = sorted(A)

if N % 2 == 0:
	print(int((A[(N-1) // 2] + A[math.ceil((N-1) / 2)]) / 2))
else:
	print(A[int(N / 2)])
0