ソースコード

with total_value_ord as (
select
TOTAL_VALUE
,ROW_NUMBER() OVER (ORDER BY TOTAL_VALUE DESC) as row_num
from convenience
where SURVEY_YEAR=2019
AND KIND_CODE=100
), get_row_num as (
select 
max(row_num)/2 as medium_row
,max(row_num)%2 as rest
from total_value_ord
)
select
sum(total_value)/count(0) as SA_MEDIAN
from total_value_ord
where row_num >= (select medium_row + rest from get_row_num)
and row_num <= (select case when rest=0 then medium_row+1 else medium_row + rest end from get_row_num)
提出情報
提出日時2022/12/12 10:22:30
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者crazyteabag
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量95 MB
メッセージ
テストケース(通過数/総数)
2/3
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
AC
81 MB
データパターン3
AC
95 MB