ソースコード
select 
a.district_code as code
,b.district_name as name
,a.latitude as lat
,a.longitude as lon
from 
(
    select 
    pf_code
    ,district_code
    ,latitude
    ,longitude
    ,(select latitude from location_tbl where district_code='1101' ) as latitude_1101
    ,(select longitude from location_tbl where district_code='1101' ) as longitude_1101
    from location_tbl
    where district_code!='1101'
)a
inner join district b on a.district_code = b.district_code
order by
sqrt(pow(latitude-latitude_1101,2)+pow(longitude-longitude_1101,2)) desc
,a.district_code
提出情報
提出日時2023/04/16 17:20:41
コンテスト第6回 SQLコンテスト
問題位置情報
受験者FunSQL
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
79 MB
データパターン3
WA
83 MB