ソースコード
with ordered_table as (
select
  total_value as total_value,
  row_number() over (order by total_value desc) as row_id,
  (select count(1) from convenience where survey_year = 2019 and kind_code = '100') as cnt
from convenience
where survey_year = 2019 and kind_code = '100'
)
select
  cast(round(avg(total_value), 0) as int) as SA_MEDIAN
from ordered_table
where row_id between cnt / 2.0 and (cnt / 2.0 + 1)
;
提出情報
提出日時2022/12/09 20:02:03
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者drcatmka13
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量90 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
79 MB
データパターン2
AC
89 MB
データパターン3
AC
90 MB