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