ソースコード
select
    PF_CODE as 都道府県コード
    , PF_NAME as 都道府県名
    , popu2015.TOTAL_AMT as 総人口2015年
    , popu2020.TOTAL_AMT as 総人口2020年
    , round((cast(popu2020.TOTAL_AMT as real) / cast(popu2015.TOTAL_AMT as real)) * 100) as 人口増加率
from
    POPU_TRANSITION as popu2015
left join POPU_TRANSITION as popu2020
    using(PF_CODE)
left join PREFECTURE
    using(PF_CODE)
where 1=1
    and popu2015.SURVEY_YEAR = 2015
    and popu2020.SURVEY_YEAR = 2020
order by 5 desc, 1
提出情報
提出日時2022/07/18 18:48:09
コンテスト練習用コンテスト
問題人口増加率分析
受験者uta_fksw
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
79 MB