結果
問題 | No.275 中央値を求めよ |
ユーザー |
|
提出日時 | 2022-08-29 23:02:53 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 91 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 81,660 KB |
実行使用メモリ | 71,040 KB |
最終ジャッジ日時 | 2024-11-06 19:52:46 |
合計ジャッジ時間 | 5,056 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 38 |
ソースコード
N = input() l = list(map(int, input().split())) median = statistics.median(l) print(median)