ソースコード
with
    std as (
        select
            age_code
            ,case when time_code = 120 then target_pop else null end as '5時間未満'
            ,case when time_code = 130 then target_pop else null end as '5時間以上6時間未満'
            ,case when time_code = 140 then target_pop else null end as '6時間以上7時間未満'
            ,case when time_code = 150 then target_pop else null end as '7時間以上8時間未満'
            ,case when time_code = 160 then target_pop else null end as '8時間以上9時間未満'
            ,case when time_code = 170 then target_pop else null end as '9時間以上'
            ,case when time_code = 180 then target_pop else null end as '不詳'
        from
            sleep_time_dtl
    )
    ,sum_std as (
        select
            age_code
            ,sum("5時間未満") as '5時間未満'
            ,sum("5時間以上6時間未満") as '5時間以上6時間未満'
            ,sum("6時間以上7時間未満") as '6時間以上7時間未満'
            ,sum("7時間以上8時間未満") as '7時間以上8時間未満'
            ,sum("8時間以上9時間未満") as '8時間以上9時間未満'
            ,sum("9時間以上") as '9時間以上'
            ,sum("不詳") as '不詳'
        from
            std
        group by
            1
    )

select
    ag.age_name as '年齢階層'
    ,sum_std."5時間未満"
    ,sum_std."5時間以上6時間未満"
    ,sum_std."6時間以上7時間未満"
    ,sum_std."7時間以上8時間未満"
    ,sum_std."8時間以上9時間未満"
    ,sum_std."9時間以上"
    ,sum_std."不詳"
from
    sum_std
join
    age_grp ag
on
    sum_std.age_code = ag.age_code
order by
    1
提出情報
提出日時2022/07/20 17:56:34
コンテスト練習用コンテスト
問題年齢別睡眠時間分析
受験者takahirostone
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量104 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
104 MB
データパターン2
AC
82 MB