ソースコード
select 
pf_code as '都道府県コード'
, (select pf_name from prefecture where pf_code=hospitalization.pf_code) as '都道府県名'
, round((cast(inp_yes as real) /(cast(inp_yes as real)+cast(inp_no as real) +cast(unidentified as real))) * 1000)/ 10 as '入院率'
from hospitalization
order by 3 desc, 1 asc;
提出情報
提出日時2022/07/21 20:39:59
コンテスト練習用コンテスト
問題世帯入院率
受験者shu8Cream
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
80 MB