結果

問題 No.275 中央値を求めよ
ユーザー ynishimuraynishimura
提出日時 2020-08-13 15:14:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,684 KB
最終ジャッジ日時 2024-10-09 19:13:10
合計ジャッジ時間 24,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 522 ms
43,800 KB
testcase_04 AC 529 ms
44,188 KB
testcase_05 WA -
testcase_06 AC 531 ms
44,044 KB
testcase_07 AC 531 ms
44,556 KB
testcase_08 AC 530 ms
44,564 KB
testcase_09 AC 534 ms
44,424 KB
testcase_10 WA -
testcase_11 AC 534 ms
44,056 KB
testcase_12 AC 530 ms
44,044 KB
testcase_13 AC 527 ms
44,040 KB
testcase_14 AC 533 ms
43,792 KB
testcase_15 WA -
testcase_16 AC 534 ms
44,312 KB
testcase_17 AC 525 ms
43,788 KB
testcase_18 WA -
testcase_19 AC 528 ms
44,180 KB
testcase_20 AC 530 ms
43,808 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 546 ms
44,568 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 530 ms
44,316 KB
testcase_27 AC 532 ms
44,304 KB
testcase_28 AC 522 ms
43,788 KB
testcase_29 AC 527 ms
44,292 KB
testcase_30 AC 525 ms
44,040 KB
testcase_31 AC 533 ms
44,184 KB
testcase_32 AC 526 ms
43,780 KB
testcase_33 AC 528 ms
43,936 KB
testcase_34 AC 532 ms
43,896 KB
testcase_35 AC 539 ms
43,788 KB
testcase_36 AC 524 ms
44,312 KB
testcase_37 AC 523 ms
44,304 KB
testcase_38 AC 521 ms
44,188 KB
testcase_39 AC 525 ms
43,940 KB
testcase_40 AC 534 ms
43,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input().strip())
L = list(map(int, input().split()))

data = np.array(L)
median = np.median(data)
print(int(median))
0