結果

問題 No.275 中央値を求めよ
ユーザー caleicalei
提出日時 2019-12-28 10:55:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 547 ms / 1,000 ms
コード長 98 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,408 KB
最終ジャッジ日時 2024-10-11 07:03:54
合計ジャッジ時間 24,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
44,404 KB
testcase_01 AC 498 ms
43,752 KB
testcase_02 AC 503 ms
44,248 KB
testcase_03 AC 509 ms
43,640 KB
testcase_04 AC 496 ms
43,772 KB
testcase_05 AC 499 ms
43,884 KB
testcase_06 AC 492 ms
43,900 KB
testcase_07 AC 500 ms
44,408 KB
testcase_08 AC 495 ms
44,148 KB
testcase_09 AC 496 ms
43,644 KB
testcase_10 AC 498 ms
44,024 KB
testcase_11 AC 493 ms
44,156 KB
testcase_12 AC 500 ms
43,760 KB
testcase_13 AC 511 ms
43,684 KB
testcase_14 AC 497 ms
44,004 KB
testcase_15 AC 499 ms
43,768 KB
testcase_16 AC 500 ms
44,152 KB
testcase_17 AC 506 ms
43,628 KB
testcase_18 AC 493 ms
43,880 KB
testcase_19 AC 506 ms
44,156 KB
testcase_20 AC 509 ms
43,764 KB
testcase_21 AC 511 ms
43,876 KB
testcase_22 AC 506 ms
43,644 KB
testcase_23 AC 499 ms
43,884 KB
testcase_24 AC 502 ms
43,880 KB
testcase_25 AC 496 ms
43,640 KB
testcase_26 AC 500 ms
44,140 KB
testcase_27 AC 501 ms
43,764 KB
testcase_28 AC 501 ms
44,008 KB
testcase_29 AC 500 ms
44,148 KB
testcase_30 AC 506 ms
44,032 KB
testcase_31 AC 495 ms
44,280 KB
testcase_32 AC 547 ms
43,664 KB
testcase_33 AC 515 ms
44,272 KB
testcase_34 AC 500 ms
43,628 KB
testcase_35 AC 499 ms
44,200 KB
testcase_36 AC 500 ms
44,008 KB
testcase_37 AC 503 ms
43,772 KB
testcase_38 AC 501 ms
43,764 KB
testcase_39 AC 508 ms
43,896 KB
testcase_40 AC 512 ms
43,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2019/12/28

import numpy as np

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