結果

問題 No.275 中央値を求めよ
ユーザー caleicalei
提出日時 2019-12-28 10:55:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 98 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 73,204 KB
最終ジャッジ日時 2024-04-19 14:47:36
合計ジャッジ時間 22,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 473 ms
44,024 KB
testcase_02 AC 455 ms
43,880 KB
testcase_03 AC 449 ms
43,628 KB
testcase_04 AC 462 ms
43,900 KB
testcase_05 AC 454 ms
43,876 KB
testcase_06 AC 470 ms
43,756 KB
testcase_07 AC 468 ms
43,624 KB
testcase_08 AC 456 ms
44,004 KB
testcase_09 AC 460 ms
44,152 KB
testcase_10 AC 461 ms
43,640 KB
testcase_11 AC 455 ms
43,620 KB
testcase_12 AC 452 ms
43,636 KB
testcase_13 AC 463 ms
43,896 KB
testcase_14 AC 462 ms
44,008 KB
testcase_15 AC 469 ms
44,024 KB
testcase_16 AC 457 ms
44,024 KB
testcase_17 AC 463 ms
43,896 KB
testcase_18 AC 457 ms
43,892 KB
testcase_19 AC 461 ms
43,504 KB
testcase_20 AC 457 ms
43,896 KB
testcase_21 AC 454 ms
43,744 KB
testcase_22 AC 447 ms
44,156 KB
testcase_23 AC 452 ms
43,752 KB
testcase_24 AC 482 ms
44,004 KB
testcase_25 AC 461 ms
43,884 KB
testcase_26 AC 449 ms
43,772 KB
testcase_27 AC 450 ms
44,008 KB
testcase_28 AC 451 ms
43,504 KB
testcase_29 AC 453 ms
43,904 KB
testcase_30 AC 463 ms
44,284 KB
testcase_31 AC 455 ms
43,512 KB
testcase_32 AC 464 ms
43,772 KB
testcase_33 AC 456 ms
43,768 KB
testcase_34 AC 453 ms
43,628 KB
testcase_35 AC 451 ms
44,160 KB
testcase_36 AC 456 ms
43,880 KB
testcase_37 AC 456 ms
44,136 KB
testcase_38 AC 461 ms
43,516 KB
testcase_39 AC 453 ms
44,028 KB
testcase_40 AC 460 ms
73,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2019/12/28

import numpy as np

n=int(input())
print(np.median(list(map(int,input().split()))))
0