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