ソースコード
select
    t1.pf_code as 都道府県コード,
    p.pf_name as 都道府県名,
    total_amt_2015 as 総人口2015年,
    total_amt_2020 as 総人口2020年,
   round(cast(total_amt_2020 as REAL) / cast(total_amt_2015 as REAL) * 100) as 人口増加率
from (
    select
        pf_code,
        total_amt total_amt_2015
    from popu_transition
    where survey_year = 2015
) t1
left join (
    select
        pf_code,
        total_amt total_amt_2020
    from popu_transition
    where survey_year = 2020
) t2
on t1.pf_code = t2.pf_code
left join prefecture p
on t1.pf_code = p.pf_code
where 人口増加率 > 100
order by 人口増加率 desc, p.pf_code;
提出情報
提出日時2022/07/10 18:45:36
コンテスト練習用コンテスト
問題人口増加率分析
受験者masayukeeeee
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
AC
86 MB