ソースコード
select
 h.pf_code as "都道府県コード"
 , pf_name as "都道府県名"
 , round( (cast(inp_yes as real) / cast( (inp_yes + inp_no + unidentified) as real)) * 100, 1) as "入院率"
from
 hospitalization h
 inner join prefecture p
 on h.pf_code = p.pf_code
order by
 round( (cast(inp_yes as real) / cast( (inp_yes + inp_no + unidentified) as real)) * 100, 1) desc
 , h.pf_code asc
 
提出情報
提出日時2022/09/22 00:40:42
コンテスト練習用コンテスト
問題世帯入院率
受験者Reliability
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量96 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
96 MB
データパターン2
AC
94 MB