ソースコード
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, cast('都道府県コード' as int) asc
提出情報
提出日時2023/02/15 14:54:26
コンテスト練習用コンテスト
問題世帯入院率
受験者ashito
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB