ソースコード
select a.pf_code as 都道府県コード,
    a.pf_name as 都道府県名,
    b.total_amt as 総人口2015年,
    c.total_amt as 総人口2020年,
    round(cast(c.total_amt as real) / cast(b.total_amt as real) * 100, 0) as 人口増加率
from prefecture as a
inner join popu_transition as b
on a.pf_code = b.pf_code and b.survey_year = 2015
inner join popu_transition as c
on a.pf_code = c.pf_code and c.survey_year = 2020
where 総人口2015年 < 総人口2020年
order by 人口増加率 desc, 都道府県コード asc;
提出情報
提出日時2022/07/13 09:54:35
コンテスト練習用コンテスト
問題人口増加率分析
受験者it_on_sundays
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
82 MB