ソースコード
select
p.pf_code 都道府県コード,
p.pf_name 都道府県名,
case 
  when cast(format("%.02f", (inp_yes * 100.0) / (inp_yes + inp_no + UNIDENTIFIED)) as string) like '%.00' then cast(format("%d", (inp_yes * 100.0) / (inp_yes + inp_no + UNIDENTIFIED)) as string)
  else  cast(format("%.02f", (inp_yes * 100.0) / (inp_yes + inp_no + UNIDENTIFIED)) as string) 
end    入院率
from HOSPITALIZATION h
left join PREFECTURE p
 on p.PF_CODE = h.PF_CODE
 
提出情報
提出日時2022/07/21 22:35:48
コンテスト練習用コンテスト
問題世帯入院率
受験者hide5stm
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
75 MB