ソースコード
select hp.pf_code '都道府県コード', pf.pf_name '都道府県名', 
round(cast(cast(100 as real)*cast(hp.inp_yes as real)/(cast(hp.inp_yes as real)+cast(hp.inp_no as real)+cast(hp.unidentified as real)) as real),1) '入院率'
from hospitalization hp
inner join prefecture pf
on hp.pf_code = pf.pf_code
order by 3 desc, 1 asc;
提出情報
提出日時2023/02/15 15:06:26
コンテスト練習用コンテスト
問題世帯入院率
受験者ashito
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB