ソースコード
select h.pf_code as 都道府県コード, p.PF_NAME as 都道府県名, round(h.inp_yes * 100.0 / (h.inp_yes + h.inp_no + h.UNIDENTIFIED), 1) as 入院率
from hospitalization as h
inner join prefecture as p
    on h.pf_code = p.pf_code
order by 入院率 desc,h.pf_code asc
提出情報
提出日時2023/08/20 14:38:55
コンテスト練習用コンテスト
問題世帯入院率
受験者regemon
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量82 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
AC
79 MB