結果

問題 No.275 中央値を求めよ
ユーザー ABKZABKZ
提出日時 2021-06-10 00:11:05
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 217 ms / 1,000 ms
コード長 95 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 86,844 KB
実行使用メモリ 85,752 KB
最終ジャッジ日時 2023-08-19 10:21:53
合計ジャッジ時間 10,898 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
85,468 KB
testcase_01 AC 209 ms
85,360 KB
testcase_02 AC 208 ms
85,632 KB
testcase_03 AC 207 ms
85,364 KB
testcase_04 AC 205 ms
85,388 KB
testcase_05 AC 207 ms
85,544 KB
testcase_06 AC 208 ms
85,468 KB
testcase_07 AC 206 ms
85,600 KB
testcase_08 AC 200 ms
85,588 KB
testcase_09 AC 205 ms
85,448 KB
testcase_10 AC 203 ms
85,740 KB
testcase_11 AC 207 ms
85,464 KB
testcase_12 AC 207 ms
85,412 KB
testcase_13 AC 209 ms
85,552 KB
testcase_14 AC 210 ms
85,724 KB
testcase_15 AC 207 ms
85,560 KB
testcase_16 AC 204 ms
85,628 KB
testcase_17 AC 198 ms
85,564 KB
testcase_18 AC 200 ms
85,476 KB
testcase_19 AC 197 ms
85,512 KB
testcase_20 AC 201 ms
85,424 KB
testcase_21 AC 207 ms
85,556 KB
testcase_22 AC 210 ms
85,548 KB
testcase_23 AC 206 ms
85,560 KB
testcase_24 AC 217 ms
85,556 KB
testcase_25 AC 200 ms
85,544 KB
testcase_26 AC 196 ms
85,592 KB
testcase_27 AC 201 ms
85,592 KB
testcase_28 AC 197 ms
85,360 KB
testcase_29 AC 203 ms
85,752 KB
testcase_30 AC 198 ms
85,368 KB
testcase_31 AC 204 ms
85,364 KB
testcase_32 AC 199 ms
85,416 KB
testcase_33 AC 199 ms
85,564 KB
testcase_34 AC 202 ms
85,388 KB
testcase_35 AC 201 ms
85,464 KB
testcase_36 AC 198 ms
85,420 KB
testcase_37 AC 196 ms
85,592 KB
testcase_38 AC 200 ms
85,596 KB
testcase_39 AC 196 ms
85,748 KB
testcase_40 AC 201 ms
85,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

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

print(statistics.median(A))
0