ソースコード
select
    class_name CLASS,
    person_name PERSON,
    amt HOUSEHOLDS
from HOUSEHOLD h1
where 1 = 1
and person_code != '1'
and class_code != '01'
and amt = (
    select max(amt) from HOUSEHOLD h2
    where 1 = 1
    and h2.person_code != '1'
    and h2.class_code != '01'
    and h1.class_code = h2.class_code
    group by h2.class_code
)
order by h1.class_code asc
;
提出情報
提出日時2024/11/03 02:25:53
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者negroponte
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
86 MB