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