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