ソースコード
with popu_2015 as
(
    select
        PF_CODE,
        TOTAL_AMT
    from
        POPU_TRANSITION
    where
        SURVEY_YEAR = 2015
),
popu_2020 as
(
    select
        PF_CODE,
        TOTAL_AMT
    from
        POPU_TRANSITION
    where
        SURVEY_YEAR = 2020
)
select
    PREFECTURE.PF_CODE as "都道府県コード",
    PREFECTURE.PF_NAME as "都道府県名",
    popu_2015.TOTAL_AMT as "総人口2015年",
    popu_2020.TOTAL_AMT as "総人口2020年",
    100 + 
    round(
        (cast(popu_2020.TOTAL_AMT as real) - cast(popu_2015.TOTAL_AMT as real)) / cast(popu_2015.TOTAL_AMT as real)
        * cast(100 as real)
    , 0)  as "人口増加率"
from
    popu_2015
inner join
    popu_2020
on
    popu_2015.PF_CODE = popu_2020.PF_CODE
inner join
    PREFECTURE
on
    PREFECTURE.PF_CODE = popu_2020.PF_CODE
order by
    `人口増加率` desc,
    PREFECTURE.PF_CODE asc
;
提出情報
提出日時2023/04/15 12:41:20
コンテスト練習用コンテスト
問題人口増加率分析
受験者fujikawahiroaki
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
81 MB
データパターン2
WA
80 MB