ソースコード
select
 p.pf_code 都道府県コード,
 p.pf_name 都道府県名,
 case 
   when cast(format("%.02f", round(inp_yes * 100.0) / (inp_yes + inp_no + UNIDENTIFIED)) as string) like '%.00'
            then cast(format("%d", round(inp_yes * 100.0) / (inp_yes + inp_no + UNIDENTIFIED)) as string)
   else  cast(format("%.02f", round(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:39:00
コンテスト練習用コンテスト
問題世帯入院率
受験者hide5stm
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
78 MB