ソースコード
select 
    p.pf_code `都道府県コード`,
    p.pf_name `都道府県名`,
    (select (select nation_name from nationality n where n.nation_code = f.nation_code) from foreigner f where p.pf_code=f.pf_code order by amt desc limit 1) `1位 国名`,
    (select amt from foreigner f where p.pf_code=f.pf_code order by amt desc limit 1) `1位 人数`,
    (select (select nation_name from nationality n where n.nation_code = f.nation_code) from foreigner f where p.pf_code=f.pf_code order by amt desc limit 1 offset 1) `2位 国名`,
    (select amt from foreigner f where p.pf_code=f.pf_code order by amt desc limit 1 offset 1) `2位 人数`,
    (select (select nation_name from nationality n where n.nation_code = f.nation_code) from foreigner f where p.pf_code=f.pf_code order by amt desc limit 1 offset 2) `3位 国名`,
    (select amt from foreigner f where p.pf_code=f.pf_code order by amt desc limit 1 offset 2) `3位 人数`,
    (select sum(amt) from foreigner f where p.pf_code=f.pf_code and f.nation_code!='113') `合計人数`
from prefecture p
where  `1位 国名` is not null
    and `2位 国名` is not null
    and `3位 国名` is not null
order by `合計人数` desc, `都道府県コード`
提出情報
提出日時2022/07/20 21:21:30
コンテスト第1回 SQLコンテスト
問題外国籍分布
受験者jau5
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量103 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
101 MB
データパターン2
WA
103 MB