ソースコード
select hs.pf_code as '都道府県コード',
       pf.pf_name as '都道府県名',
       hs.ratio    as '入院率'
from (select pf_code, round(cast(inp_yes as real) * 100 / cast((inp_yes + inp_no + unidentified) as real) , 1) as ratio from hospitalization) as hs
left outer join prefecture pf on hs.pf_code = pf.pf_code
order by hs.ratio desc, hs.pf_code
提出情報
提出日時2024/04/21 02:11:53
コンテスト練習用コンテスト
問題世帯入院率
受験者tele
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB