ソースコード
with tbl as( 
select
l.district_code as CODE
,district_name as NAME
,l.latitude as ALT
,l.LONGITUDE as LON
,abs(l.latitude - A.latitude)*abs(l.latitude - A.latitude)+abs(l.longitude - A.longitude)*abs(l.longitude - A.longitude)as l
from location_tbl as l
inner join district as d
on l.district_code = d.district_code
cross join (
    select latitude,longitude from location_tbl where district_code ='1101'
) as A
where code <> '1101'
order by l desc,CODE)

select CODE,NAME,ALT,LON from tbl
提出情報
提出日時2024/05/23 10:55:04
コンテスト第6回 SQLコンテスト
問題位置情報
受験者HamamatsuUnagi
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
86 MB
データパターン3
WA
83 MB