ソースコード
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) 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 19:28:01
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者drcatmka13
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
WA
86 MB
データパターン3
WA
83 MB