ソースコード
with temp1 as(
    select
        PERSON_CODE
        , CLASS_CODE
        , AMT
    from
        HOUSEHOLD
    where
        PERSON_CODE != '1'
        and CLASS_CODE != '01'
) , temp2 as (
    select
        CLASS_CODE
        , PERSON_CODE
        , AMT
    from
        temp1
    where
        AMT in (
            select
                max(AMT)
            from
                temp1
            group by
                CLASS_CODE
            )
)
select
    CLASS_NAME as CLASS
    , PERSON_NAME as PERSON
    , t.AMT as HOUSEHOLDS
from
    temp2 t
    inner join HOUSEHOLD h on t.PERSON_CODE = h.PERSON_CODE and t.CLASS_CODE = h.CLASS_CODE
order by
    t.CLASS_CODE asc
;
提出情報
提出日時2022/10/19 18:58:47
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者toridashisoba
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量110 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
110 MB
データパターン2
AC
92 MB