ソースコード
select
    t_2015.pf_code as 都道府県コード,
    p.pf_name as 都道府県名,
    t_2015.total_amt as 総人口2015年,
    t_2020.total_amt as 総人口2020年,
    round(100.0 * t_2020.total_amt / t_2015.total_amt, 0) as 人口増加率
from prefecture as p
inner join
    (
        select pf_code, total_amt
        from popu_transition
        where survey_year = 2015
    ) as t_2015 on p.pf_code = t_2015.pf_code,
    (
        select pf_code, total_amt
        from popu_transition
        where survey_year = 2020
    ) as t_2020 on p.pf_code = t_2020.pf_code
where t_2015.total_amt < t_2020.total_amt
order by 5 desc, 1 asc
提出情報
提出日時2022/07/13 13:12:22
コンテスト練習用コンテスト
問題人口増加率分析
受験者sotanishy
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
80 MB
データパターン2
AC
79 MB