ソースコード
select
class_name as CLASS
,PERSON_NAME as PERSON
,AMT as HOUSEHOLDS
from household as h
inner join 
(
    select
    class_code
    ,max(amt) as total_max
    from household 
    where person_code <> '1'
    and class_code <>'01'
    group by class_code
) as mh
on h.class_code = mh.class_code
and h.amt = mh.total_max
order by h.class_code asc
提出情報
提出日時2024/04/25 11:14:48
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者HamamatsuUnagi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
83 MB