コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
p.pf_code `都道府県コード`,
p.pf_name `都道府県名`,
(select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2015) `総人口2015年`,
(select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2020) `総人口2020年`,
round((select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2020) * 100.0 / (select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2015)) `人口増加率`
from
Prefecture p
where
`総人口2015年` is not null and `総人口2020年` is not null
and `人口増加率` >= 100
order by
`人口増加率` desc, `都道府県コード`
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
82 MB
データパターン2
AC
80 MB