コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with tmp as (
select
class_code
,class_name as "CLASS"
,person_name as "PERSON"
,amt as "HOUSEHOLDS"
,row_number() over(partition by class_name order by amt desc) "順位"
from
household
where
person_code <> '1'
and class_code <> '01'
)
select
class
,person
,households
from
tmp
where
"順位" = 1
order by
class_code asc
;
提出情報
提出日時 | 2024/09/22 07:22:04 |
コンテスト | 第3回 SQLコンテスト |
問題 | 最大世帯人員 |
受験者 | nosh |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 84 MB |
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB