ソースコード
with
result2015 as (
    select * from popu_transition where survey_year = 2015
),
result2020 as (
    select * from popu_transition where survey_year = 2020
),
result as (
    select result2015.pf_code, round(result2015.total_amt*100.0/result2020.total_amt) as ratio from result2015 left outer join result2020
)
select pf_code, ratio from result where ratio > 100 order by ratio desc, pf_code asc;
提出情報
提出日時2022/07/10 16:27:18
コンテスト練習用コンテスト
問題人口増加率分析
受験者musaprg
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB