ソースコード
with temp as (
select
    PF_CODE,TOTAL_VALUE
from
    CONVENIENCE

where
    KIND_CODE='100'
    and
    SURVEY_YEAR='2019'
), temp2 as (
select
    PF_CODE,TOTAL_VALUE, (select count(*) from temp as t0 where t0.TOTAL_VALUE<=t.TOTAL_VALUE) as num, (select count(*) from temp) as tnum
from
    temp as t
)
select
    TOTAL_VALUE
from
    temp2
where
    cast(tnum/2 as integer)=num
提出情報
提出日時2022/12/10 07:17:12
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者hamanonz
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
75 MB
データパターン2
WA
76 MB
データパターン3
WA
76 MB