結果
| 問題 | No.275 中央値を求めよ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-08 10:01:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 94 bytes |
| 記録 | |
| コンパイル時間 | 945 ms |
| コンパイル使用メモリ | 20,788 KB |
| 実行使用メモリ | 20,712 KB |
| 最終ジャッジ日時 | 2026-05-08 10:01:45 |
| 合計ジャッジ時間 | 12,222 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | AC * 1 RE * 37 |
ソースコード
N = int(input()) A = [int(input()) for x in range(N)] s = sum(A) / len(A) print(round(s, 1))