ソースコード
select
	hos.pf_code as 都道府県コード
	,pre.pf_name as 都道府県名
	,round(cast(hos.inp_yes as real) / cast((hos.inp_yes + hos.inp_no + hos.unidentified) as real) * 100, 1) as 入院率
from
	hospitalization hos
		left join prefecture pre on hos.pf_code = pre.pf_code
order by
	入院率 desc
	,都道府県コード
提出情報
提出日時2022/07/07 16:50:13
コンテスト練習用コンテスト
問題世帯入院率
受験者nonta
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
75 MB