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