結果
問題 | No.275 中央値を求めよ |
ユーザー |
![]() |
提出日時 | 2018-10-23 19:14:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 183 ms / 1,000 ms |
コード長 | 276 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-25 01:58:57 |
合計ジャッジ時間 | 3,986 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
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] = temif n % 2 == 0:print((l[n//2-1]+l[n//2])/2)else:print(l[(n-1)//2])