ソースコード
select
    pf_code as "都道府県コード",
    pf_name as "都道府県名",
    ratio as "入院率"
from
    (
        select
            p.*,
            round(
                cast(inp_yes as real) / cast(inp_no + inp_yes + unidentified as real) * 100,
                1
            ) as ratio
        from
            hospitalization h
            join prefecture p on h.pf_code = p.pf_code
    )
order by
    ratio desc,
    pf_code asc
limit
    10;

提出情報
提出日時2023/11/04 17:59:56
コンテスト練習用コンテスト
問題世帯入院率
受験者nob
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量75 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
75 MB
データパターン2
AC
75 MB