コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with
result2015 as (
select * from popu_transition where survey_year = 2015
),
result2020 as (
select * from popu_transition where survey_year = 2020
),
result as (
select
result2015.pf_code,
result2015.total_amt as total_2015,
result2020.total_amt as total_2020,
result2020.total_amt*100.0/result2015.total_amt as ratio
from result2015 join result2020 on result2015.pf_code = result2020.pf_code
)
select
result.pf_code as "都道府県コード",
pf_name as "都道府県名",
total_2015 as "総人口2015年",
total_2020 as "総人口2020年",
round(ratio) as "人口増加率"
from result join prefecture on result.pf_code = prefecture.pf_code where ratio > 100 order by "人口増加率" desc, "都道府県コード" asc;
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
85 MB