コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select round(avg(total_value)) as SA_MEDIAN
from (
select
c1.total_value
from convenience c1
inner join convenience c2
on c2.survey_year=2019
and c2.kind_code='100'
where
c1.survey_year=2019
and c1.kind_code='100'
group by c1.total_value
having case mod(count(*),2) when 0 then sum(case when c2.total_value>=c1.total_value then 1 else 0 end)>=count(*)/2
and sum(case when c2.total_value<=c1.total_value then 1 else 0 end)>=count(*)/2
else sum(case when c2.total_value>=c1.total_value then 1 else 0 end)>count(*)/2
and sum(case when c2.total_value<=c1.total_value then 1 else 0 end)>count(*)/2
end
);
提出情報
提出日時 | 2024/05/16 11:36:01 |
コンテスト | 第4回 SQLコンテスト |
問題 | 中央値の算出 |
受験者 | sjty9561 |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 84 MB |
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
83 MB
データパターン3
AC
84 MB