ソースコード
select p.pf_code as 都道府県コード, p.pf_name as 都道府県名, round(cast(h.yes as real)/cast(h.total as real)*100,2) as 入院率
from(
select pf_code, sum(inp_yes) as yes, sum(inp_yes)+sum(inp_no)+sum(unidentified) as total
from hospitalization
group by pf_code
) as h left join prefecture as p
on h.pf_code = p.pf_code
order by 3 desc, 1
提出情報
提出日時2022/07/08 04:42:11
コンテスト練習用コンテスト
問題世帯入院率
受験者kazkida
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB