結果
問題 | No.275 中央値を求めよ |
ユーザー |
![]() |
提出日時 | 2018-10-23 18:56:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 275 bytes |
コンパイル時間 | 90 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-19 04:32:53 |
合計ジャッジ時間 | 3,922 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 RE * 1 |
other | AC * 3 WA * 14 RE * 21 |
ソースコード
n = int(input()) l = list(map(int,input().split())) for i in range(n-1): for j in range(n-i-1): if l[j] > l[j+1]: tem = l[j] l[j] = l[j+1] l[j+1] = tem if n % 2 == 0: print((l[n//2]+l[n//2+1])//2) else: print(l[n+1//2])