結果
問題 | No.275 中央値を求めよ |
ユーザー |
![]() |
提出日時 | 2018-10-23 19:02:50 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 274 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-19 04:33:44 |
合計ジャッジ時間 | 3,990 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 24 WA * 14 |
ソースコード
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-1]+l[n//2])/2) else: print(l[n//2-1])