ソースコード
select
     都道府県コード
    ,都道府県名
    ,"総人口2015年"
    ,"総人口2020年"
    ,round((総人口2020年) * 100 / (総人口2015年)) as 人口増加率
from
(
select
     main.PF_CODE as 都道府県コード
    ,pre.PF_NAME as 都道府県名
    ,sum(main.TOTAL_AMT) filter (where main.SURVEY_YEAR = 2015) as "総人口2015年"
    ,sum(main.TOTAL_AMT) filter (where main.SURVEY_YEAR = 2020) as "総人口2020年"
from
    POPU_TRANSITION as main
inner join
    PREFECTURE as pre using(PF_CODE)
group by
     都道府県コード
having
    "総人口2020年" > "総人口2015年"
)
order by
     人口増加率 desc
    ,都道府県コード asc
提出情報
提出日時2022/09/21 17:10:13
コンテスト練習用コンテスト
問題人口増加率分析
受験者kon-kitsune
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
91 MB
データパターン2
WA
81 MB