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