コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with org as (
select
pf_code
, nation_code
, sum(amt) as _1
from foreigner
where nation_code != '113'
group by pf_code, nation_code
), org2 as (
select
*
, rank() over (partition by pf_code order by _1 desc) as _2
, sum(_1) over (partition by pf_code) as _3
from org
--) select * from org2;
), org3 as (
select
*
from org2
where _2 < 4
-- ) select * from org3;
)
select
a.pf_code as '都道府県コード'
, b.pf_name as '都道府県名'
, max(case when _2 = 1 then c.nation_name else '' end) as '1位 国名'
, max(case when _2 = 1 then _1 else 0 end) as '1位 人数'
, max(case when _2 = 2 then c.nation_name else '' end) as '2位 国名'
, max(case when _2 = 2 then _1 else 0 end) as '2位 人数'
, max(case when _2 = 3 then c.nation_name else '' end) as '3位 国名'
, max(case when _2 = 3 then _1 else 0 end) as '3位 人数'
, _3 as '合計人数'
from org3 as a
inner join prefecture as b
on a.pf_code = b.pf_code
inner join nationality as c
on a.nation_code = c.nation_code
group by 1
order by 9 desc, a.nation_code
;
提出情報
提出日時 | 2023/03/03 00:37:45 |
コンテスト | 第1回 SQLコンテスト |
問題 | 外国籍分布 |
受験者 | s4wara_o |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 84 MB |
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
82 MB
データパターン2
AC
84 MB