結果

問題 No.275 中央値を求めよ
ユーザー なえしらなえしら
提出日時 2023-11-03 21:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,784 KB
最終ジャッジ日時 2024-09-25 18:49:55
合計ジャッジ時間 8,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
88,468 KB
testcase_01 AC 148 ms
88,704 KB
testcase_02 AC 145 ms
88,576 KB
testcase_03 AC 154 ms
88,784 KB
testcase_04 AC 149 ms
88,372 KB
testcase_05 AC 150 ms
88,576 KB
testcase_06 AC 149 ms
88,440 KB
testcase_07 AC 157 ms
88,452 KB
testcase_08 AC 150 ms
88,704 KB
testcase_09 AC 147 ms
88,448 KB
testcase_10 AC 147 ms
88,484 KB
testcase_11 AC 147 ms
88,404 KB
testcase_12 AC 147 ms
88,500 KB
testcase_13 AC 150 ms
88,444 KB
testcase_14 AC 145 ms
88,460 KB
testcase_15 AC 152 ms
88,316 KB
testcase_16 AC 150 ms
88,288 KB
testcase_17 AC 149 ms
88,704 KB
testcase_18 AC 146 ms
88,464 KB
testcase_19 AC 149 ms
88,280 KB
testcase_20 AC 150 ms
88,288 KB
testcase_21 AC 148 ms
88,448 KB
testcase_22 AC 146 ms
88,492 KB
testcase_23 AC 148 ms
88,436 KB
testcase_24 AC 145 ms
88,448 KB
testcase_25 AC 148 ms
88,704 KB
testcase_26 AC 148 ms
88,472 KB
testcase_27 AC 148 ms
88,448 KB
testcase_28 AC 153 ms
88,568 KB
testcase_29 AC 148 ms
88,576 KB
testcase_30 AC 147 ms
88,348 KB
testcase_31 AC 152 ms
88,344 KB
testcase_32 AC 149 ms
88,292 KB
testcase_33 AC 163 ms
88,648 KB
testcase_34 AC 168 ms
88,576 KB
testcase_35 AC 169 ms
88,448 KB
testcase_36 AC 169 ms
88,356 KB
testcase_37 AC 169 ms
88,644 KB
testcase_38 AC 166 ms
88,476 KB
testcase_39 AC 154 ms
88,632 KB
testcase_40 AC 150 ms
88,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from statistics import median

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

print(median(A))
0