ソースコード
select prefecture.pf_code as "都道府県コード", pf_name as "都道府県名",
round(cast(inp_yes as real)*100/(cast(inp_yes as real)+cast(inp_no as real)+cast(unidentified as real)), 1) as "入院率"
from hospitalization 
inner join prefecture on hospitalization.pf_code=prefecture.pf_code 
order by cast(prefecture.pf_code as int) asc;
提出情報
提出日時2023/06/18 00:19:30
コンテスト練習用コンテスト
問題世帯入院率
受験者kntnmn
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
79 MB