結果

問題 No.275 中央値を求めよ
ユーザー disneyresidentsdisneyresidents
提出日時 2020-10-23 09:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 1,000 ms
コード長 92 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 85,884 KB
最終ジャッジ日時 2023-09-28 15:10:36
合計ジャッジ時間 12,830 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
85,696 KB
testcase_01 AC 250 ms
85,884 KB
testcase_02 AC 250 ms
85,700 KB
testcase_03 AC 256 ms
85,700 KB
testcase_04 AC 258 ms
85,356 KB
testcase_05 AC 254 ms
85,676 KB
testcase_06 AC 255 ms
85,488 KB
testcase_07 AC 253 ms
85,676 KB
testcase_08 AC 252 ms
85,488 KB
testcase_09 AC 250 ms
85,352 KB
testcase_10 AC 252 ms
85,496 KB
testcase_11 AC 254 ms
85,580 KB
testcase_12 AC 250 ms
85,492 KB
testcase_13 AC 250 ms
85,688 KB
testcase_14 AC 248 ms
85,808 KB
testcase_15 AC 255 ms
85,688 KB
testcase_16 AC 255 ms
85,708 KB
testcase_17 AC 249 ms
85,580 KB
testcase_18 AC 246 ms
85,572 KB
testcase_19 AC 251 ms
85,796 KB
testcase_20 AC 251 ms
85,616 KB
testcase_21 AC 259 ms
85,484 KB
testcase_22 AC 258 ms
85,728 KB
testcase_23 AC 256 ms
85,736 KB
testcase_24 AC 254 ms
85,488 KB
testcase_25 AC 255 ms
85,352 KB
testcase_26 AC 253 ms
85,428 KB
testcase_27 AC 254 ms
85,784 KB
testcase_28 AC 258 ms
85,480 KB
testcase_29 AC 255 ms
85,808 KB
testcase_30 AC 247 ms
85,620 KB
testcase_31 AC 249 ms
85,552 KB
testcase_32 AC 251 ms
85,496 KB
testcase_33 AC 251 ms
85,600 KB
testcase_34 AC 247 ms
85,548 KB
testcase_35 AC 249 ms
85,472 KB
testcase_36 AC 248 ms
85,568 KB
testcase_37 AC 249 ms
85,492 KB
testcase_38 AC 247 ms
85,744 KB
testcase_39 AC 252 ms
85,660 KB
testcase_40 AC 251 ms
85,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

input()
a = list(map(int, input().split()))

print(statistics.median(a))
0