ソースコード
with
t_2015 as (
select pf_code, total_amt
from popu_transition
where survey_year = 2015
),

t_2020 as (
select pf_code, total_amt
from popu_transition
where survey_year = 2020
)

select
    t_2015.pf_code as 都道府県コード,
    p.pf_name as 都道府県名,
    t_2015.total_amt as 総人口2015年,
    t_2020.total_amt as 総人口2020年,
    100 * t_2020.total_amt / t_2015.total_amt as 人口増加率
from t_2015
inner join
    prefecture p on p.pf_code = t_2015.pf_code,
    t_2020 on t_2020.pf_code = t_2015.pf_code
where 人口増加率 > 100
order by 人口増加率 desc, 都道府県コード asc
提出情報
提出日時2022/07/13 13:02:22
コンテスト練習用コンテスト
問題人口増加率分析
受験者sotanishy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
78 MB