結果

問題 No.275 中央値を求めよ
ユーザー tanakayotanakayo
提出日時 2020-12-17 15:31:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 795 ms / 1,000 ms
コード長 116 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 80,604 KB
最終ジャッジ日時 2024-09-21 08:05:58
合計ジャッジ時間 23,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 795 ms
43,928 KB
testcase_01 AC 496 ms
44,180 KB
testcase_02 AC 480 ms
44,416 KB
testcase_03 AC 490 ms
44,304 KB
testcase_04 AC 482 ms
44,560 KB
testcase_05 AC 484 ms
44,312 KB
testcase_06 AC 488 ms
44,444 KB
testcase_07 AC 483 ms
44,408 KB
testcase_08 AC 478 ms
44,308 KB
testcase_09 AC 486 ms
44,284 KB
testcase_10 AC 489 ms
43,932 KB
testcase_11 AC 482 ms
44,368 KB
testcase_12 AC 474 ms
43,900 KB
testcase_13 AC 484 ms
44,304 KB
testcase_14 AC 490 ms
44,048 KB
testcase_15 AC 486 ms
44,304 KB
testcase_16 AC 477 ms
44,440 KB
testcase_17 AC 482 ms
44,428 KB
testcase_18 AC 473 ms
44,304 KB
testcase_19 AC 474 ms
43,792 KB
testcase_20 AC 479 ms
44,308 KB
testcase_21 AC 478 ms
43,964 KB
testcase_22 AC 473 ms
43,932 KB
testcase_23 AC 485 ms
43,928 KB
testcase_24 AC 483 ms
44,044 KB
testcase_25 AC 497 ms
44,556 KB
testcase_26 AC 496 ms
43,924 KB
testcase_27 AC 493 ms
44,060 KB
testcase_28 AC 496 ms
44,320 KB
testcase_29 AC 485 ms
43,804 KB
testcase_30 AC 491 ms
43,920 KB
testcase_31 AC 488 ms
43,916 KB
testcase_32 AC 501 ms
43,796 KB
testcase_33 AC 480 ms
44,188 KB
testcase_34 AC 495 ms
43,920 KB
testcase_35 AC 483 ms
44,060 KB
testcase_36 AC 481 ms
44,044 KB
testcase_37 AC 478 ms
44,684 KB
testcase_38 AC 490 ms
44,308 KB
testcase_39 AC 470 ms
43,920 KB
testcase_40 AC 485 ms
80,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

num = int(input())
data = np.array([int(x) for x in input().split(" ")])

print(np.median(data))
0