結果

問題 No.275 中央値を求めよ
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2020-06-25 15:28:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 231 ms / 1,000 ms
コード長 93 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 10,624 KB
実行使用メモリ 60,716 KB
最終ジャッジ日時 2023-09-16 22:40:47
合計ジャッジ時間 8,508 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
29,676 KB
testcase_01 AC 123 ms
29,748 KB
testcase_02 AC 119 ms
29,656 KB
testcase_03 AC 116 ms
29,608 KB
testcase_04 AC 119 ms
29,704 KB
testcase_05 AC 119 ms
29,832 KB
testcase_06 AC 118 ms
29,696 KB
testcase_07 AC 115 ms
29,780 KB
testcase_08 AC 113 ms
29,664 KB
testcase_09 AC 115 ms
29,756 KB
testcase_10 AC 116 ms
29,696 KB
testcase_11 AC 118 ms
29,596 KB
testcase_12 AC 117 ms
29,664 KB
testcase_13 AC 116 ms
29,748 KB
testcase_14 AC 115 ms
29,720 KB
testcase_15 AC 116 ms
29,908 KB
testcase_16 AC 114 ms
29,820 KB
testcase_17 AC 115 ms
29,856 KB
testcase_18 AC 114 ms
29,776 KB
testcase_19 AC 115 ms
29,700 KB
testcase_20 AC 119 ms
29,836 KB
testcase_21 AC 120 ms
29,748 KB
testcase_22 AC 115 ms
29,824 KB
testcase_23 AC 123 ms
29,740 KB
testcase_24 AC 118 ms
29,780 KB
testcase_25 AC 121 ms
29,756 KB
testcase_26 AC 121 ms
29,664 KB
testcase_27 AC 120 ms
29,760 KB
testcase_28 AC 122 ms
29,636 KB
testcase_29 AC 122 ms
29,704 KB
testcase_30 AC 119 ms
29,676 KB
testcase_31 AC 118 ms
29,696 KB
testcase_32 AC 122 ms
29,696 KB
testcase_33 AC 121 ms
29,644 KB
testcase_34 AC 120 ms
29,648 KB
testcase_35 AC 120 ms
29,684 KB
testcase_36 AC 119 ms
29,684 KB
testcase_37 AC 121 ms
29,768 KB
testcase_38 AC 122 ms
29,820 KB
testcase_39 AC 123 ms
29,644 KB
testcase_40 AC 121 ms
60,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N=int(input())
A=[int(i) for i in input().split()]
a=np.median(A)
print(a)
0