ソースコード
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;
提出情報
提出日時2023/10/09 19:04:10
コンテスト練習用コンテスト
問題人口増加率分析
受験者kate
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
AC
78 MB