コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
p.pf_code as '都道府県コード'
,p.pf_name as '都道府県名'
,t2015.total_amt as '総人口2015年'
,t2020.total_amt as '総人口2020年'
,round(cast(t2015.total_amt as real) / cast(t2020.total_amt as real) * 100) as '人口増加率'
from
prefecture p
join
(select
*
from
popu_transition
where
survey_year = 2015
) t2015
on
p.pf_code = t2015.pf_code
join
(select
*
from
popu_transition
where
survey_year = 2020
) t2020
on
p.pf_code = t2020.pf_code
order by
(cast(t2015.total_amt as real) / cast(t2020.total_amt as real)) desc, 1 asc
提出情報
提出日時 | 2022/07/20 17:37:16 |
コンテスト | 練習用コンテスト |
問題 | 人口増加率分析 |
受験者 | takahirostone |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 105 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
92 MB
データパターン2
WA
105 MB