ソースコード
select p.PF_CODE as 都道府県コード, PF_NAME as 都道府県名, 
    old.TOTAL_AMT as 総人口2015年,
    new.TOTAL_AMT as 総人口2020年,
    round((new.TOTAL_AMT*1.0) / (old.TOTAL_AMT*1.0) * 100) as 人口増加率
from PREFECTURE as p
join (select TOTAL_AMT, PF_CODE from POPU_TRANSITION where SURVEY_YEAR = 2015) as old on old.PF_CODE = p.PF_CODE
join (select TOTAL_AMT, PF_CODE from POPU_TRANSITION where SURVEY_YEAR = 2020) as new on new.PF_CODE = p.PF_CODE
where new.TOTAL_AMT > old.TOTAL_AMT
order by 人口増加率 desc, 都道府県コード
提出情報
提出日時2024/02/18 16:05:53
コンテスト練習用コンテスト
問題人口増加率分析
受験者oribe
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
85 MB