結果

問題 No.275 中央値を求めよ
ユーザー Uzuki SaraUzuki Sara
提出日時 2017-06-12 10:18:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 527 ms / 1,000 ms
コード長 139 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,776 KB
最終ジャッジ日時 2024-06-25 00:33:03
合計ジャッジ時間 23,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,412 KB
testcase_01 AC 508 ms
44,548 KB
testcase_02 AC 507 ms
44,544 KB
testcase_03 AC 498 ms
44,284 KB
testcase_04 AC 507 ms
44,396 KB
testcase_05 AC 504 ms
44,160 KB
testcase_06 AC 509 ms
44,404 KB
testcase_07 AC 512 ms
44,028 KB
testcase_08 AC 504 ms
44,160 KB
testcase_09 AC 508 ms
44,776 KB
testcase_10 AC 506 ms
44,564 KB
testcase_11 AC 505 ms
44,400 KB
testcase_12 AC 505 ms
44,548 KB
testcase_13 AC 512 ms
44,412 KB
testcase_14 AC 506 ms
44,148 KB
testcase_15 AC 503 ms
44,408 KB
testcase_16 AC 506 ms
44,028 KB
testcase_17 AC 507 ms
44,412 KB
testcase_18 AC 506 ms
44,012 KB
testcase_19 AC 506 ms
44,408 KB
testcase_20 AC 511 ms
44,524 KB
testcase_21 AC 512 ms
44,012 KB
testcase_22 AC 510 ms
44,012 KB
testcase_23 AC 513 ms
44,148 KB
testcase_24 AC 514 ms
44,272 KB
testcase_25 AC 505 ms
44,424 KB
testcase_26 AC 512 ms
44,148 KB
testcase_27 AC 510 ms
44,628 KB
testcase_28 AC 499 ms
44,280 KB
testcase_29 AC 527 ms
44,416 KB
testcase_30 AC 519 ms
44,524 KB
testcase_31 AC 511 ms
44,536 KB
testcase_32 AC 515 ms
44,420 KB
testcase_33 AC 503 ms
44,548 KB
testcase_34 AC 506 ms
44,012 KB
testcase_35 AC 505 ms
44,544 KB
testcase_36 AC 504 ms
44,012 KB
testcase_37 AC 503 ms
44,412 KB
testcase_38 AC 513 ms
44,524 KB
testcase_39 AC 510 ms
44,144 KB
testcase_40 AC 516 ms
44,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import numpy as np

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

print(np.median(data_int))
0