ソースコード
select
    --floor(district_code / 100) as dist_cd,
    district_name as "都道府県名",
    sum(total_amt) as "総人口"

from
  population
  
where
  lvl <> 1

group by
  floor(district_code / 1000)

order by
  total_amt desc
提出情報
提出日時2022/07/03 23:05:21
コンテスト練習用コンテスト
問題都道府県の人口
受験者cyan_nyan
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
79 MB