ソースコード
select p.pf_code as 都道府県コード, p.pf_name as 都道府県名, old_t.TOTAL_AMT as 総人口2015年, t.TOTAL_AMT as 総人口2020年, round(t.TOTAL_AMT*100.0/old_t.TOTAL_AMT, 0) as 人口増加率
from POPU_TRANSITION as t
  join prefecture as p
    on t.pf_code = p.pf_code
  join POPU_TRANSITION as old_t
    on t.pf_code = old_t.pf_code and old_t.SURVEY_YEAR = 2015
where t.SURVEY_YEAR = 2020
order by 人口増加率 desc, 都道府県コード asc
提出情報
提出日時2023/08/20 14:48:07
コンテスト練習用コンテスト
問題人口増加率分析
受験者regemon
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
76 MB