結果
問題 |
No.275 中央値を求めよ
|
ユーザー |
|
提出日時 | 2025-10-03 13:26:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 167 ms / 1,000 ms |
コード長 | 89 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 82,124 KB |
実行使用メモリ | 88,944 KB |
最終ジャッジ日時 | 2025-10-03 13:26:22 |
合計ジャッジ時間 | 8,212 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
import statistics as s N=int(input()) A=list(map(int,input().split())) print(s.median(A))