ソースコード
with
result2015 as (
    select * from popu_transition where survey_year = 2015
),
result2020 as (
    select * from popu_transition where survey_year = 2020
),
result as (
    select
        result2015.pf_code,
        result2015.total_amt as total_2015,
        result2020.total_amt as total_2020,
        result2020.total_amt*100.0/result2015.total_amt as ratio
    from result2015 join result2020 on result2015.pf_code = result2020.pf_code
)
select
    result.pf_code as "都道府県コード",
    pf_name as "都道府県名",
    total_2015 as "総人口2015年",
    total_2020 as "総人口2020年",
    round(ratio) as "人口増加率"
from result join prefecture on result.pf_code = prefecture.pf_code where ratio > 100 order by "人口増加率" desc, "都道府県コード" asc;
提出情報
提出日時2022/07/10 17:02:57
コンテスト練習用コンテスト
問題人口増加率分析
受験者musaprg
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
85 MB