結果

問題 No.275 中央値を求めよ
ユーザー mlihua09mlihua09
提出日時 2020-08-23 00:31:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 1,000 ms
コード長 94 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 88,992 KB
最終ジャッジ日時 2024-04-23 12:32:57
合計ジャッジ時間 8,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
88,548 KB
testcase_01 AC 144 ms
88,660 KB
testcase_02 AC 145 ms
88,504 KB
testcase_03 AC 146 ms
88,552 KB
testcase_04 AC 144 ms
88,580 KB
testcase_05 AC 146 ms
88,604 KB
testcase_06 AC 147 ms
88,576 KB
testcase_07 AC 147 ms
88,808 KB
testcase_08 AC 147 ms
88,576 KB
testcase_09 AC 148 ms
88,604 KB
testcase_10 AC 144 ms
88,628 KB
testcase_11 AC 149 ms
88,556 KB
testcase_12 AC 148 ms
88,504 KB
testcase_13 AC 147 ms
88,532 KB
testcase_14 AC 146 ms
88,600 KB
testcase_15 AC 152 ms
88,416 KB
testcase_16 AC 150 ms
88,992 KB
testcase_17 AC 148 ms
88,628 KB
testcase_18 AC 149 ms
88,568 KB
testcase_19 AC 147 ms
88,592 KB
testcase_20 AC 149 ms
88,536 KB
testcase_21 AC 153 ms
88,620 KB
testcase_22 AC 148 ms
88,520 KB
testcase_23 AC 149 ms
88,572 KB
testcase_24 AC 150 ms
88,428 KB
testcase_25 AC 145 ms
88,412 KB
testcase_26 AC 147 ms
88,468 KB
testcase_27 AC 148 ms
88,644 KB
testcase_28 AC 145 ms
88,420 KB
testcase_29 AC 149 ms
88,576 KB
testcase_30 AC 144 ms
88,500 KB
testcase_31 AC 143 ms
88,628 KB
testcase_32 AC 145 ms
88,504 KB
testcase_33 AC 148 ms
88,532 KB
testcase_34 AC 144 ms
88,716 KB
testcase_35 AC 148 ms
88,572 KB
testcase_36 AC 147 ms
88,440 KB
testcase_37 AC 146 ms
88,780 KB
testcase_38 AC 145 ms
88,436 KB
testcase_39 AC 147 ms
88,604 KB
testcase_40 AC 146 ms
88,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



_ = input()



import statistics

print(statistics.median(list(map(int, input().split()))))
0