コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
p.pf_code as 都道府県コード,
p.pf_name as 都道府県名,
round(
inp_yes / cast(inp_yes + inp_no + unidentified as float) * 100.0,
1
) as 入院率
from
hospitalization as h
inner join
prefecture as p on h.pf_code = p.pf_code
order by
入院率 desc, 都道府県コード asc
;
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
77 MB